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.
我正在寻找一种将程序的执行路径(即程序/方法在特定执行中采用的分支)记录到文件中的方法。我需要这条信息来了解我的输入采用什么路径并做出与性能相关的决策。
Prof-It for C# 看起来很有前途,但不幸的是它不支持最新版本的 Visual Studio。
我目前的计划是在程序的每个分支上生成一个唯一的 ID,并在执行过程中记录该 ID。然而,这似乎是一个非常耗时的过程。
喜欢
Assembly.GetCallingAssembly() Assembly.GetExecutingAssembly()
或者
System.Diagnostics.StackFrame
?