Boo.Lang.Compiler.TypeSystem.TypeSystemServices.CanBeExplicitlyCastToPrimitiveNumber C# (CSharp) 메소드

CanBeExplicitlyCastToPrimitiveNumber() 공개 메소드

public CanBeExplicitlyCastToPrimitiveNumber ( IType type ) : bool
type IType
리턴 bool
        public bool CanBeExplicitlyCastToPrimitiveNumber(IType type)
        {
            return type.IsEnum || type == CharType;
        }
TypeSystemServices