System.Linq.Dynamic.ExpressionParser.IsNullableType C# (CSharp) Method

IsNullableType() private static method

private static IsNullableType ( Type type ) : bool
type Type
return bool
		private static bool IsNullableType(Type type)
		{
			return type.IsGenericType && type.GetGenericTypeDefinition() == typeof(Nullable<>);
		}
ExpressionParser