2

I have application written in C#. Memory usage shows that there is a memory leak. However, dotTrace shows that managed memory is OK, so I think that leak occurs in native memory (yes, there are some native calls in my application). How can I find the problem?

Thanks!

levanovd
  • 4,095
  • 6
  • 37
  • 56

1 Answers1

1

I would take a memory dump of the running application, and then use Windbg or Visual Studio 2010 to investigate the issue.

Related resources:

Community
  • 1
  • 1
Enrico Campidoglio
  • 56,676
  • 12
  • 126
  • 154