Post Made Community Wiki by Community
show/hide this revision's text 2 added 145 characters in body

The ThrowIfArgumentIsNull is a nice way to do that null check we all should do.

public static class Extensions
{
	public static void ThrowIfArgumentIsNull<T>(this T obj, string parameterName) where T : class
	{
		if (obj == null) throw new ArgumentNullException(parameterName + " not allowed to be null");
	}
}

Below is the way to use it and it works on all classes in your namespace or wherever you use the namespace its within.

internal class Test
{
	public Test(string input1)
	{
		input1.ThrowIfArgumentIsNull("input1");
	}
}

It's ok to use this code on the CodePlex project.

show/hide this revision's text 1

The ThrowIfArgumentIsNull is a nice way to do that null check we all should do.

public static class Extensions
{
	public static void ThrowIfArgumentIsNull<T>(this T obj, string parameterName) where T : class
	{
		if (obj == null) throw new ArgumentNullException(parameterName + " not allowed to be null");
	}
}

Below is the way to use it and it works on all classes in your namespace or wherever you use the namespace its within.

internal class Test
{
	public Test(string input1)
	{
		input1.ThrowIfArgumentIsNull("input1");
	}
}