I'm really trying to figure out the best practices for good reusable code that is easily debugged. I have ran into what I see as a common practice among developers, that I don't quite understand the complete benefit to.
public MyConstructor(Object myObject)
{
if (myObject == null)
throw new ArgumentNullException("myObject is null.");
_myObject = myObject;
}
It almost seems unnecessary to do this check. But I think it's because I don't completely understand what the benefits of doing this check are. It seems like the compiler would handle this for whoever was passing in a null object anyways? I am probably wrong, would really like to hear some thoughts on it.
Thank you.
myObjectand this is the only place to initialise it then it makes sense to throw exceptions as early as possible so you know about them. In a long running web app you may not know about the issue until someone happens to call a method that requires the object. – Tim Croydon Jan 25 '11 at 16:15