Tagged Questions
The argument-validation tag has no wiki summary.
11
votes
5answers
2k views
C#: Argument validation: null/empty strings
I don't know how many countless times I've had to write code to validate string arguments:
public RoomName(string name)
{
if (string.IsNullOrEmpty(name))
{
throw new ...
6
votes
7answers
455 views
What is the best practice in case one argument is null?
when validating methods' input, I used to check if the argument is null, and if so I throw an ArgumentNullException. I do this for each and every argument in the list so I end up with code like this:
...
4
votes
6answers
255 views
How to avoid argument validation
Validating Primitive Arguments and "Complex Data"
Validating Arguments
When writing a method, arguments should be validated first before any operations are performed. For example, let's say we've ...
3
votes
3answers
1k views
C#: Best practice for validating “this” argument in extension methods
Let's say I have an extension method
public static T TakeRandom<T>(this IEnumerable<T> e)
{
...
To validate the argument e, should I:
A) if (e == null) throw new ...