Profiling .net Library

I am referring to a class in the .net library in VB6 and should profile it. Is there a profiler that can be specified in a .net library DLL?

The memory problems that I want to profile only occur when used in a VB6 application. A clean .net test application for the library has no memory problems.

+4
source share
1 answer

Launch the VB6 application inside the profiler, for example JetBrains DotTrace or ANTI Profiler . Although a VB6 application, at least DotTrace should be able to see .NET library calls.

+2
source

Source: https://habr.com/ru/post/1299785/


All Articles