Adf.Core.Data.InternalStateExtensions.IsNullable C# (CSharp) Метод

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

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