Operator operator !=
operator !=(Timestamped<T>, Timestamped<T>)
Tests whether two Timestamped<T> structures are different.
public static bool operator !=(Timestamped<T> left, Timestamped<T> right)
Parameters
left
Timestamped<T>The Timestamped<T> structure on the left of the inequality operator.
right
Timestamped<T>The Timestamped<T> structure on the right of the inequality operator.
Returns
- bool
true if
left
andright
differ either in value or timestamp; false ifleft
andright
are equal.