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

GetNullableUnderlyingType() public method

public GetNullableUnderlyingType ( IType type ) : IType
type IType
return IType
        public IType GetNullableUnderlyingType(IType type)
        {
            var et = type as ExternalType;
            return Map(Nullable.GetUnderlyingType(et.ActualType));
        }
TypeSystemServices