memory consumed by my .net Application

P

prakashdehury

Hi

I am in the process of optimizing an .Net application that consumes
lot of memory for its mathemetical processing and calculation.

Can any one pls suggest me how to check the memory consumed by an .net
Application apart from performance monitor.

thanks
Prakash
 
M

Mahmoud Al-Qudsi

Hi

I am in the process of optimizing an .Net application that consumes
lot of memory for its mathemetical processing and calculation.

Can any one pls suggest me how to check the memory consumed by an .net
Application apart from performance monitor.

thanks
Prakash

You could run your application in a profiler and get all the CPU and
Memory consumption details. A good one is Net Profiler from Jet
Brains:
http://www.jetbrains.net/confluence/display/NetProf/Home;jsessionid=B51EBFCDEE96D0B0263FDC0F40AC4FDC
 
M

Mr. Arnold

Hi

I am in the process of optimizing an .Net application that consumes
lot of memory for its mathemetical processing and calculation.

Can any one pls suggest me how to check the memory consumed by an .net
Application apart from performance monitor.

I like to use Process Explorer.

You can right-click the process, select Properties and select the
Performance tab, which will tell you the memory being used by the process.

http://www.microsoft.com/technet/sysinternals/default.mspx
 
J

Jorge

Hi

I am in the process of optimizing an .Net application that consumes
lot of memory for its mathemetical processing and calculation.

Can any one pls suggest me how to check the memory consumed by an .net
Application apart from performance monitor.

thanks
Prakash

The Microsoft CLR profiler is an excelent tool to find memory
problems.
I have found many memory problems in my applications with it.
And it's free and open source!!!!

http://www.microsoft.com/downloads/...1C-3870-43BE-8926-862B40AA0CD0&displaylang=en

Advice: read first the manual.
 
I

Ignacio Machin \( .NET/ C# MVP \)

Hi,

Hi

I am in the process of optimizing an .Net application that consumes
lot of memory for its mathemetical processing and calculation.

Can any one pls suggest me how to check the memory consumed by an .net
Application apart from performance monitor.


You can use one of several profilers there are available, take a look at
".net memory profiler" for example
 
P

prakashdehury

Hi,






You can use one of several profilers there are available, take a look at
".net memory profiler" for example

Thanks all for such wonderful help. its fixed now
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top