tags:

views:

56

answers:

2

I'm referencing a class in a .net library in VB6 and need to profile it. Is there a profiler that can be pointed at a .net library dll?

The memory issues I wish to profile only happens when used in the VB6 application. The pure .net test application for the library does not have memory issues.

+2  A: 

Run your VB6 application inside a profiler like JetBrains DotTrace or ANTS Profiler. Although the application is VB6, at least DotTrace should be able to see the managed .NET library calls.

Håvard S
Thanks, DotTrace gave me everything i needed.
Jason Maxwell
A: 

I can also recommend YourKit .NET profiler

Serge