Current possibilities for tracing program flow in C#?

后端 未结 2 951
轻奢々
轻奢々 2020-11-29 11:38

I have used Postsharp a few years ago to trace program flow during execution without needing to manually add trace statements to the method

2条回答
  •  南方客
    南方客 (楼主)
    2020-11-29 12:32

    If you only want this ability at debug time, there's Microsoft IntelliTrace that's a part of Visual Studio 2010 Ultimate, and there's Sergey Vlasov's RunTime Flow. The former makes your program run very slow. Haven't tried the latter.

提交回复
热议问题