Table of Contents

Enum ComparisonKinds

Namespace
Garyon.Objects
Assembly
Garyon.dll

Represents comparison kinds.

[Flags]
public enum ComparisonKinds
Extension Methods

Fields

All = Greater | LessOrEqual

Represents all comparison kinds.

Different = Greater | Less

A value is different than (!=) another.

The value is identical to NotEqual.

Equal = 2

A value is equal to (=) another.

Greater = 1

A value is greater than (>) another.

GreaterOrEqual = Greater | Equal

A value is greater than or equal to (>=) another.

Less = 4

A value is less than (<) another.

LessOrEqual = Equal | Less

A value is less than or equal to (<=) another.

None = 0

Represents the default value of the enum. It should only be used in argument validation.

NotEqual = Greater | Less

A value is not equal to (!=) another.

The value is identical to Different.