find performance sensitive point [duplicate]
Possible Duplicate:
What Are Some Good .NET Profilers?
Can You su开发者_开发百科ggest any software which can check my application while executing and show which methods take what time ?
thanks for help, I need to solve performance issue and Im looking for bottlenecks
You're looking for a performance profiler. Check out Eqatec (free) or ANTS (not free). Both are solid. There are others, too; just Google performance profilers.
there are plenty of profilers listed here:
Any decent C# profilers out there?
Also check out dotTrace.
Actually for starting out with performance analysis, VS 2010 doesn't do too bad of a job. Just select Debug | Start Performance Analysis and you can select what you are interested in, certainly it will show you the "hot spots" in your applications / in which functions the most time is spent in. The picture just shows a quick sample I took.
精彩评论