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

IsUnsignedInteger() 개인적인 메소드

private IsUnsignedInteger ( IType type ) : bool
type IType
리턴 bool
        private bool IsUnsignedInteger(IType type)
        {
            return type == UShortType
                || type == UIntType
                || type == ULongType
                || type == ByteType;
        }
TypeSystemServices