Boo.Lang.Compiler.TypeSystem.TypeSystemServices.IsUnsignedInteger C# (CSharp) Méthode

IsUnsignedInteger() private méthode

private IsUnsignedInteger ( IType type ) : bool
type IType
Résultat bool
        private bool IsUnsignedInteger(IType type)
        {
            return type == UShortType
                || type == UIntType
                || type == ULongType
                || type == ByteType;
        }
TypeSystemServices