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. |
True if the items are not equal.