Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所有,只是想知道是否有可能在 .NET/C# 中获取堆栈上的变量列表及其值?我正在为我的应用程序创建一个异常处理程序,除了标准堆栈跟踪之外,我还希望查看堆栈上任何变量的名称和值。知道这是否可以做到吗?
是的,StackFrame 类可以帮助您。
连锁
沿着这些思路
var currentStackFrame = new StackFrame(1); var props = currentStackFrame.GetMethod().GetParameters();