W catch
bloku, w jaki sposób mogę uzyskać numer linii, który zgłosił wyjątek?
W catch
bloku, w jaki sposób mogę uzyskać numer linii, który zgłosił wyjątek?
Odpowiedzi:
Jeśli potrzebujesz numeru wiersza do więcej niż tylko sformatowanego śledzenia stosu uzyskanego z Exception.StackTrace, możesz użyć klasy StackTrace :
try
{
throw new Exception();
}
catch (Exception ex)
{
// Get stack trace for the exception with source file information
var st = new StackTrace(ex, true);
// Get the top stack frame
var frame = st.GetFrame(0);
// Get the line number from the stack frame
var line = frame.GetFileLineNumber();
}
Zauważ, że zadziała to tylko wtedy, gdy dla zestawu dostępny jest plik pdb.
int line = (new StackTrace(ex, true)).GetFrame(0).GetFileLineNumber();
GetFrame(st.FrameCount-1)
aby była bardziej niezawodna.
Prosto, użyj Exception.ToString()
funkcji, zwróci wiersz po opisie wyjątku.
Możesz także sprawdzić bazę danych debugowania programu, ponieważ zawiera informacje / dzienniki debugowania dotyczące całej aplikacji.
System.Exception: Test at Tests.Controllers.HomeController.About() in c:\Users\MatthewB\Documents\Visual Studio 2013\Projects\Tests\Tests\Controllers\HomeController.cs:line 22
Exception.Message
jest dla mnie martwy. Nigdy więcej.
Jeśli nie masz .PBO
pliku:
DO#
public int GetLineNumber(Exception ex)
{
var lineNumber = 0;
const string lineSearch = ":line ";
var index = ex.StackTrace.LastIndexOf(lineSearch);
if (index != -1)
{
var lineNumberText = ex.StackTrace.Substring(index + lineSearch.Length);
if (int.TryParse(lineNumberText, out lineNumber))
{
}
}
return lineNumber;
}
Vb.net
Public Function GetLineNumber(ByVal ex As Exception)
Dim lineNumber As Int32 = 0
Const lineSearch As String = ":line "
Dim index = ex.StackTrace.LastIndexOf(lineSearch)
If index <> -1 Then
Dim lineNumberText = ex.StackTrace.Substring(index + lineSearch.Length)
If Int32.TryParse(lineNumberText, lineNumber) Then
End If
End If
Return lineNumber
End Function
Lub jako rozszerzenie klasy Exception
public static class MyExtensions
{
public static int LineNumber(this Exception ex)
{
var lineNumber = 0;
const string lineSearch = ":line ";
var index = ex.StackTrace.LastIndexOf(lineSearch);
if (index != -1)
{
var lineNumberText = ex.StackTrace.Substring(index + lineSearch.Length);
if (int.TryParse(lineNumberText, out lineNumber))
{
}
}
return lineNumber;
}
}
Regex.Match
z :[^ ]+ (\d+)
tym samym efektem.
:line
i nie mam pliku PDB.
Możesz dołączyć .PDB
pliki symboli powiązane ze złożeniem, które zawierają informacje o metadanych, a kiedy zgłoszony zostanie wyjątek, będzie on zawierał pełne informacje w ścieżce stosu, z której pochodzi ten wyjątek. Będzie zawierać numery linii każdej metody na stosie.
To działa:
var LineNumber = new StackTrace(ex, True).GetFrame(0).GetFileLineNumber();
UnhandledExceptionEventArgs
obiekt
Sprawdź ten
StackTrace st = new StackTrace(ex, true);
//Get the first stack frame
StackFrame frame = st.GetFrame(0);
//Get the file name
string fileName = frame.GetFileName();
//Get the method name
string methodName = frame.GetMethod().Name;
//Get the line number from the stack frame
int line = frame.GetFileLineNumber();
//Get the column number
int col = frame.GetFileColumnNumber();
Zaktualizuj odpowiedź
// Get stack trace for the exception with source file information
var st = new StackTrace(ex, true);
// Get the top stack frame
var frame = st.GetFrame(st.FrameCount-1);
// Get the line number from the stack frame
var line = frame.GetFileLineNumber();
Próbowałem użyć rozwiązania By @ davy-c, ale miałem wyjątek „System.FormatException:„ Łańcuch wejściowy nie był w poprawnym formacie. ””, Było to spowodowane tym, że nadal był tekst po numerze linii, zmodyfikowałem kod on opublikował i wymyślił:
int line = Convert.ToInt32(objErr.ToString().Substring(objErr.ToString().IndexOf("line")).Substring(0, objErr.ToString().Substring(objErr.ToString().IndexOf("line")).ToString().IndexOf("\r\n")).Replace("line ", ""));
Działa to dla mnie w VS2017 C #.
static class ExceptionHelpers
{
public static int LineNumber(this Exception ex)
{
int n;
int i = ex.StackTrace.LastIndexOf(" ");
if (i > -1)
{
string s = ex.StackTrace.Substring(i + 1);
if (int.TryParse(s, out n))
return n;
}
return -1;
}
}
try
{
throw new Exception("A new error happened");
}
catch (Exception ex)
{
//If error in exception LineNumber() will be -1
System.Diagnostics.Debug.WriteLine("[" + ex.LineNumber() + "] " + ex.Message);
}
Pracuje dla mnie:
var st = new StackTrace(e, true);
// Get the bottom stack frame
var frame = st.GetFrame(st.FrameCount - 1);
// Get the line number from the stack frame
var line = frame.GetFileLineNumber();
var method = frame.GetMethod().ReflectedType.FullName;
var path = frame.GetFileName();
Dodałem rozszerzenie do wyjątku, które zwraca wiersz, kolumnę, metodę, nazwę pliku i komunikat:
public static class Extensions
{
public static string ExceptionInfo(this Exception exception)
{
StackFrame stackFrame = (new StackTrace(exception, true)).GetFrame(0);
return string.Format("At line {0} column {1} in {2}: {3} {4}{3}{5} ",
stackFrame.GetFileLineNumber(), stackFrame.GetFileColumnNumber(),
stackFrame.GetMethod(), Environment.NewLine, stackFrame.GetFileName(),
exception.Message);
}
}
W pliku Global.resx znajduje się zdarzenie o nazwie Błąd_aplikacji
uruchamia się za każdym razem, gdy wystąpi błąd ,, możesz łatwo uzyskać wszelkie informacje o błędzie i wysłać je na e-mail śledzenia błędów.
Myślę też, że wszystko, co musisz zrobić, to skompilować plik global.resx i dodać jego biblioteki DLL (2 biblioteki DLL) do folderu bin i będzie działać!