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
Mahmoud Al-Qudsi - 29 May 2007 12:31 GMT
On May 29, 1:24 pm, prakashdeh...@gmail.com wrote:
> Hi
>
[quoted text clipped - 6 lines]
> 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=B51EBFCDEE96
D0B0263FDC0F40AC4FDC
Mr. Arnold - 29 May 2007 12:59 GMT
> Hi
>
[quoted text clipped - 3 lines]
> 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
Jorge - 29 May 2007 14:50 GMT
On May 29, 7:24 am, prakashdeh...@gmail.com wrote:
> Hi
>
[quoted text clipped - 6 lines]
> 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/details.aspx?familyid=A362781C-3870-43BE-8926
-862B40AA0CD0&displaylang=en
Advice: read first the manual.
Ignacio Machin ( .NET/ C# MVP ) - 29 May 2007 15:34 GMT
Hi,
> Hi
>
[quoted text clipped - 3 lines]
> 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
prakashdehury@gmail.com - 31 May 2007 13:44 GMT
On May 29, 7:34 pm, "Ignacio Machin \( .NET/ C# MVP \)" <machin TA
laceupsolutions.com> wrote:
> Hi,
>
[quoted text clipped - 12 lines]
> 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