Finding the Root Cause of a .Net Application Memory Leak

Overview High memory use in a .Net application is usually the result of Common Language Runtime (CLR) objects growing in size continuously. When the application memory use grows to over 1.4GB in size, the next time the application tries to “New” an object it will hit a CLR exception of type System.OutOfMemoryException causing the application to crash. The CLR memory is… Continue reading Finding the Root Cause of a .Net Application Memory Leak

.Net Development and Unit Testing Tutorial

Summary The goal of this tutorial is to learn to create C# programs, learn to compile, execute, and debug them, learn unit testing, and learn some general error handling. Overview The .Net Framework is installed on every Windows machine so you can create and compile a program without installing any other components. Visual Studio is the integrated… Continue reading .Net Development and Unit Testing Tutorial