Click or drag to resize

IRawComparerT Interface

Defines a method that a type implements to compare the raw binary representation of two objects.

Namespace:  Ookii.Jumbo.IO
Assembly:  Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax
public interface IRawComparer<T> : IComparer<T>

Type Parameters

T
The type of the objects whose binary represenation can be compared.

The IRawComparerT type exposes the following members.

Methods
  NameDescription
Public methodCompare(T, T)
Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.
(Inherited from IComparerT.)
Public methodCompare(Byte, Int32, Int32, Byte, Int32, Int32)
Compares the binary representation of two objects and returns a value indicating whether one is less than, equal to, or greater than the other.
Top
Extension Methods
  NameDescription
Public Extension MethodCompareT
Compares the binary representation of two objects and returns a value indicating whether one is less than, equal to, or greater than the other.
(Defined by RawComparerHelper.)
Top
See Also