Shaolinq.TypeExtensions.IsNullableType C# (CSharp) Method

IsNullableType() public static method

public static IsNullableType ( this type ) : bool
type this
return bool
		public static bool IsNullableType(this Type type)
		{
			return Nullable.GetUnderlyingType(type) != null;
		}