Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an equivalent of Valgrind for .Net on Windows?

I want to debug some managed code (originally written in C# on Windows x86). I know that Valgrind has a great set of tools for unmanaged code on a few non-Windows platforms. However, we are talking about Windows and managed .Net code here. So, is there an equivalent of Valgrind for .Net on Windows?

like image 614
Phil C Avatar asked Jun 18 '11 10:06

Phil C


1 Answers

Here are some profilers for .NET:

  • Microsoft CLR Profiler (free)
  • RedGate ANTS Profiler (commercial)
  • JetBrains dotTrace (commercial)
like image 187
Darin Dimitrov Avatar answered Nov 10 '22 17:11

Darin Dimitrov