I'm searching for methods to boost up C#/.NET application. What I found so far is
- Use ngen.
- Careful when using as operator
- Careful when using reflection API. It takes quite a while to load dll with
Assembly.LoadFrom()
.
What else tools/tips/good practices do you have to get the best performance out of C#/.NET program.