ObjectImpl.OperatorEquality<T> method

Standard implementation of the equality operator.

public static bool OperatorEquality<T>(T? left, T? right)
    where T : class, IEquatable<T>
parameter description
left The left item.
right The right item.

Return Value

True if the items are equal.

See Also