Чтобы увидеть трассировку стека для данного исключения, используйте e.StackTrace
Если вам нужна более подробная информация, вы можете использовать класс System.Diagnostics.StackTrace (вот код, который вы можете попробовать):
try
{
throw new Exception();
}
catch (Exception ex)
{
//Get a StackTrace object for the exception
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();
}
Это будет работать, только если для сборки доступен файл pdb. См. Свойства проекта - вкладка «Сборка» - «Дополнительно» - «Отладочная информация», чтобы убедиться в наличии файла pdb.