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