Boo.Lang.Compiler.TypeSystem.TypeSystemServices.IsSignedInteger C# (CSharp) Method

IsSignedInteger() private method

private IsSignedInteger ( IType right ) : bool
right IType
return bool
        private bool IsSignedInteger(IType right)
        {
            return right == SByteType || right == ShortType || right == IntType || right == LongType;
        }
TypeSystemServices