ICSharpCode.NRefactory.CSharp.Resolver.CSharpResolver.GetEnumUnderlyingType C# (CSharp) Méthode

GetEnumUnderlyingType() private méthode

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