What are the most common memory optimizations in csharp, dotnet 2.0. Wanted to see if there common things that people may not be doing by default in winform app
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
||||
|
|
|
Use StringBuilder instead of directly modifying a string if you're performing many modifications to the same string. |
||||
|
|
|
Sealing as much classes as possible should also help. AFAIK this is one trick that SmartAssembly uses to reduce memory consumption. |
|||||
|