Aqueduct.SitecoreLib.DataAccess.ValueResolvers.ResolverHelper.IsNullableType C# (CSharp) Метод

IsNullableType() публичный статический Метод

public static IsNullableType ( Type type ) : bool
type System.Type
Результат bool
        public static bool IsNullableType (Type type)
        {
            return type.IsGenericType && type.GetGenericTypeDefinition ().Equals (typeof (Nullable<>));
        }