Compares to KeyValuePair objects and returns a bool value indicating whether or not they represent different information.

Namespace:  Asi.iBO
Assembly:  Asi.iBO (in Asi.iBO.dll) Version: 15.1.2.0

Syntax

C#
public static bool operator !=(
	KeyValuePair left,
	KeyValuePair right
)
Visual Basic (Declaration)
Public Shared Operator <> ( _
	left As KeyValuePair, _
	right As KeyValuePair _
) As Boolean
Visual C++
public:
static bool operator !=(
	KeyValuePair left, 
	KeyValuePair right
)

Parameters

left
Type: Asi.iBO..::.KeyValuePair
The KeyValuePair object on the left side of the operator.
right
Type: Asi.iBO..::.KeyValuePair
The KeyValuePair object on the right side of the operator.

Return Value

true if the objects do not have the same data; false if they do have the same data.

See Also