Methods and Techniques

Assertion Points

I love using assertion points such as the following:

Debug.Assert(HasBrainGameManager, "This instance has no brain games game manager");

I started using assertion points after realizing how powerful they are (System.Diagnostics.Debug). After about a year of doing so, I started reading MSCode Complete and they have a whole chapter about assertion points.

 

Read more: Assertion Points