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

IsUnsigned() static private method

static private IsUnsigned ( StorageType type ) : bool
type StorageType
return bool
        internal static bool IsUnsigned(StorageType type)
        {
            return (type == StorageType.UInt16 ||
                   type == StorageType.UInt32 ||
                   type == StorageType.UInt64 ||
                   type == StorageType.Byte);
        }