Throwing ArgumentNullException in constructor?

Viewed 19277

For a constructor with a single parameter, is it OK to throw an ArgumentNullException inside the constructor if the parameter is null/empty? OR, should it be thrown in the method that actually uses the argument? Thanks.

4 Answers
Related