Boo.Lang.Compiler.TypeSystem.TypeSystemServices.IsNullable C# (CSharp) Method

IsNullable() public static method

public static IsNullable ( IType type ) : bool
type IType
return bool
        public static bool IsNullable(IType type)
        {
            var et = type as ExternalType;
            return (null != et && et.ActualType.IsGenericType && et.ActualType.GetGenericTypeDefinition() == Types.Nullable);
        }
TypeSystemServices