Click or drag to resize
TripleTFirst, TSecond, TThirdInequality Operator
Determines if two triples are not equal. Two triples are equal if the all three elements compare equal using IComparable<T>.Equals or object.Equals.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public static bool operator !=(
	Triple<TFirst, TSecond, TThird> pair1,
	Triple<TFirst, TSecond, TThird> pair2
)

Parameters

pair1
Type: X3Platform.CollectionsTripleTFirst, TSecond, TThird
First triple to compare.
pair2
Type: X3Platform.CollectionsTripleTFirst, TSecond, TThird
Second triple to compare.

Return Value

Type: Boolean
True if the triples are not equal. False if the triples are equal.
See Also