System.Data.ExpressionNode.IsUnsigned C# (CSharp) Метод

IsUnsigned() статический приватный Метод

static private IsUnsigned ( StorageType type ) : bool
type StorageType
Результат bool
        internal static bool IsUnsigned(StorageType type)
        {
            return (type == StorageType.UInt16 ||
                   type == StorageType.UInt32 ||
                   type == StorageType.UInt64 ||
                   type == StorageType.Byte);
        }