Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

3 Answers

up vote 9 down vote accepted
  • use structs for small wrapper objects to avoid heap fragmentation
  • think carefully about object lifetimes, especially for large objects so they do not end up on the LOH unless you intend them to
  • think about allocations inside of a loop
  • make sure dynamically sized array will be of reasonable size, otherwise partition the problem
share|improve this answer

Use StringBuilder instead of directly modifying a string if you're performing many modifications to the same string.

share|improve this answer

Sealing as much classes as possible should also help. AFAIK this is one trick that SmartAssembly uses to reduce memory consumption.

share|improve this answer
This isn't for memory consumption, but rather for speed. Sealed classes are faster to load and call since you don't have to consider their methods might be overridden. – Omer van Kloeten Sep 14 '08 at 12:48
Maybe in a future version of the platform the CLR will load all classes as sealed first and patch them if it loads derived types later. – kokos Sep 14 '08 at 15:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.