ObjectImpl.OperatorInequality<T> method

Standard implementation of the inequality operator.

public static bool OperatorInequality<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 not equal.

See Also