Boo.Lang.Compiler.Steps.EmitAssembly.GetEnumUnderlyingType C# (CSharp) Метод

GetEnumUnderlyingType() приватный Метод

private GetEnumUnderlyingType ( IType enumType ) : Type
enumType IType
Результат System.Type
        private Type GetEnumUnderlyingType(IType enumType)
        {
            return enumType is IInternalEntity
                ? ((InternalEnum) enumType).UnderlyingType
                : Enum.GetUnderlyingType(GetSystemType(enumType));
        }

Same methods

EmitAssembly::GetEnumUnderlyingType ( Boo.Lang.Compiler.Ast.EnumDefinition node ) : Type
EmitAssembly