- 此问题在此处已有答案**:
11年前关闭了。
- 可能重复:**
How to print the current Stack Trace in .NET without any exception?
当抛出异常时,它的文本包含了堆栈跟踪。我能以某种方式获得堆栈跟踪文本(包括文件和行)而没有异常吗?
public void f()
{
//blah
string stacktrace = ???;
//blah
}
11年前关闭了。
How to print the current Stack Trace in .NET without any exception?
当抛出异常时,它的文本包含了堆栈跟踪。我能以某种方式获得堆栈跟踪文本(包括文件和行)而没有异常吗?
public void f()
{
//blah
string stacktrace = ???;
//blah
}
3条答案
按热度按时间ct2axkht1#
Environment.StackTrace或System.Diagnostics.StackTrace(如果需要更方便的(即非字符串)表示)
9w11ddsr2#
是的...
6tdlim6h3#