views:

102

answers:

7

Has anyone any guideline, book, or article for memory management in c#? I want to improve my memory management information?

+1  A: 

CLR via C#, Second Edition

Applied Microsoft .NET Framework Programming

Garbage Collection: Automatic Memory Management in the Microsoft .NET Framework

Arseny
There's a 3rd edition of CLR via C#.
Brian Rasmussen
@Brian Rasmusse that's fine but I would recommend books I've read
Arseny
A: 

this is an old, but great tutorial to begin with:

Nissim
A: 

Here are links for twp part series by Jeffry Ritcher about Grabage Collection - part1 & part2. Al though dated back to .NET 1 times, it covers almost everything.

VinayC
A: 

If you're tuning memory usage the Memory Performance Counters are important.

Check http://msdn.microsoft.com/en-us/library/x2tyfybc.aspx

Jerome
+1  A: 

You can find useful articles from msdn.

This video might be helpful, even though it is for promotional purpose of redgates - ants memory profiler

what about some googling?

Sandy
A: 

Everyone looking to know more about .NET memory management should read about the Large Object Heap: http://msdn.microsoft.com/en-us/magazine/cc534993.aspx

Hightechrider
+1  A: 

Raymond Chen recently did a series of CLR and GC related articles on his blog. They were excellent.

The Old New Thing

Nate