Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any decent C# profilers out there? [closed]

I need a C# profiler.

Although I'm not averse to paying for one, something which is free or at least with a trial version would be ideal since it takes time to raise a purchase order.

Any recommendations?

like image 261
Gareth Simpson Avatar asked Aug 14 '08 03:08

Gareth Simpson


People also ask

What is the best free IDE for C?

NetBeans NetBeans, developed by Apache Software Foundation – Oracle Corporation, is also one of the most widely used IDE by the C/C++ developers. This free and open-source Integrated Development Environment allows you to create C and C++ applications with dynamic and static libraries.

Is C or C+ Better?

C++ is object-oriented, bottom-up, and includes many high-level features. C is low-level, procedural, and top-down. C is still in use because it is slightly faster and smaller than C++. For most people, C++ is the better choice.

Do you need IDE for C?

Text Editors and IDEsEdit. Aside from a compiler, the only other software requirement is a text editor for writing and saving your C code.


2 Answers

I used Ants profiler on a large c# project a year and a half ago. It really performed very nicely for what it cost, and even outperformed a few of the more expensive competitors.

It calculates cost on with almost a line by line resolution.

like image 130
AdamSane Avatar answered Sep 29 '22 02:09

AdamSane


You can try the following:

  • nprof (free but kinda old)
  • ProfileSharp (open source)
  • .Net Memory Profiler (really good for memory leaks, there's a trial version)

Edit: Nprof has been replaced with SlimTune and works with .Net 4.0 applications

like image 32
jfs Avatar answered Sep 29 '22 01:09

jfs