Click or drag to resize

ComparerUnEqualsT, TValue Method (T, T, FuncT, TValue)

Determines whether a is unequal to b

Namespace:  Cauldron
Assembly:  Cauldron (in Cauldron.dll) Version: 3.2.0.1 (3.2.0.1)
Syntax
C#
public static bool UnEquals<T, TValue>(
	T a,
	T b,
	Func<T, TValue> selector
)

Parameters

a
Type: T
The first object to compare
b
Type: T
The second object to compare
selector
Type: SystemFuncT, TValue
The value selector which will be used for the compare

Type Parameters

T
The type of the objects to be compared
TValue
The values of the object used to compare them (e.g. Hash)

Return Value

Type: Boolean
true if a is unequal to b; otherwise, false.
See Also