Shaolinq.TypeExtensions.CanBeNull C# (CSharp) Method

CanBeNull() static private method

static private CanBeNull ( this type ) : bool
type this
return bool
		internal static bool CanBeNull(this Type type)
		{
			return !type.IsValueType || type.IsNullableType();
		}