Most of my methods has check for null argument in the function so I thought instead of writing
Debug.Assert(x != null, "x should not be null");
if (x == null)
{
throw new ArgumentNullException("x");
}
everywhere, I would simply create a static class with static method to centralize it.
However that has its own issue which is if Debug.Assert gets triggered then VS will popup in the static method instead of where the calling method is going to be, which is where it like it to be.
Just curious if anyone has a better way to handle this scenario or just in general how to handle this repeated work?
Thanks!
if (x == null)? Isn'tDebug.Assertenough? – L.B Nov 11 '11 at 7:45