Friday, January 22, 2010

10 ASP.NET Performance and Scalability Secrets

10 ASP.NET Performance and Scalability Secrets should implement for sites that require improved performance.

For additional information on improving ASP.NET Performance click here.

Threat Analysis Tool

Threat Analysis Tool

Wednesday, January 20, 2010

WPF Threads

Learn about how WPF handles threads. WPF now offers two UI threads. Click on WPF Threads
and WPF Threading Model to learn more....

Memory Leaks with Delegates

When adding delegate (+=), you should remove it (-=) in order to release the delegate object and allow the GC to collect it. If a delegate maintains a reference to an externally declared object, and is not removed (-=), you will have a memory leak. For more details, click this article.