Any decent C# profilers out there? [closed]

2019-01-01 01:42发布

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?

20条回答
栀子花@的思念
2楼-- · 2019-01-01 02:21

What's your objective?

Is it your objective to locate specific statements and get a rough idea of what they are contributing to your total execution time, so you can find ways to do them differently?

For that, I swear by this method.

查看更多
看淡一切
3楼-- · 2019-01-01 02:22

You can try the following:


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

查看更多
与风俱净
4楼-- · 2019-01-01 02:22

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.

查看更多
高级女魔头
5楼-- · 2019-01-01 02:22

AQTime (both perf and memory) or ANTS (v4 performance profiler or v5 beta memory profiler) here.

查看更多
荒废的爱情
6楼-- · 2019-01-01 02:27

EQATEC profiler did the job here.

查看更多
皆成旧梦
7楼-- · 2019-01-01 02:28

dotTrace from JetBrains is widely used.

Patrick Smacchia's awesome NDepend is excellent for providing static analysis.

查看更多
登录 后发表回答