Which .NET performance and/or memory profilers will allow me to profile a DLL?

Posted by Eric on Stack Overflow See other posts from Stack Overflow or by Eric
Published on 2010-03-12T02:05:54Z Indexed on 2010/03/12 2:07 UTC
Read the original article Hit count: 206

I write a lot of .NET based plug-ins for other programs which are usually compiled as a DLL which is up to the native application to start up. I've been using Equatec's profiler, which works great, but now would like something with more features, including the ability to profile memory usage.

I tried out Red Gate's Ant Profiler, but as far as I can see there is no way to profile a DLL. The only option is to profile an EXE.

So my question is what other profiling tools are available that will allow me to profile a single library DLL rather than an EXE. I'm assuming this would require injecting profile code into the library as Equatec does?

© Stack Overflow or respective owner

Related posts about profiling

Related posts about c#