System.Data.ExpressionNode.IsSigned C# (CSharp) Method

IsSigned() static private method

static private IsSigned ( StorageType type ) : bool
type StorageType
return bool
        internal static bool IsSigned(StorageType type)
        {
            return (type == StorageType.Int16 ||
                type == StorageType.Int32 ||
                type == StorageType.Int64 ||
                type == StorageType.SByte ||
                IsFloat(type));
        }