Search Results for

    Show / Hide Table of Contents

    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 left and right:

    ValueMeaning
    Less than zeroleft is less than right
    Zeroleft equals right
    Greater than zeroleft is greater than right

    Type Parameters
    Name Description
    TLeft

    The type of the left instance to compare.

    TRight

    The type of the right instance to compare.

    In This Article
    Back to top Copyright © 2023 Envobi Ltd