ICSharpCode.NRefactory.CSharp.Resolver.CSharpResolver.GetEnumUnderlyingType C# (CSharp) Method

GetEnumUnderlyingType() private method

private GetEnumUnderlyingType ( IType enumType ) : IType
enumType IType
return IType
		IType GetEnumUnderlyingType(IType enumType)
		{
			ITypeDefinition def = enumType.GetDefinition();
			return def != null ? def.EnumUnderlyingType : SpecialType.UnknownType;
		}
		
CSharpResolver