Delegate Comparison<TLeft, TRight>
A comparison delegate function that compares two objects that can be of different types. It is otherwise similar to Comparison<T>.
Namespace: actionETL
Assembly: actionETL.dll
Syntax
public delegate int Comparison<in TLeft, in TRight>(TLeft left, TRight right);
Parameters
| Type | Name | Description |
|---|---|---|
| TLeft | left | The left (or first) parameter. |
| TRight | right | The right (or second) parameter. |
Returns
| Type | Description | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Int32 | A signed integer that indicates the relative values of
|
Type Parameters
| Name | Description |
|---|---|
| TLeft | The type of the left instance to compare. |
| TRight | The type of the right instance to compare. |