Click or drag to resize
TypeInequality Operator
Indicates whether two Type objects are not equal.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public static bool operator !=(
	Type left,
	Type right
)

Parameters

left
Type: SystemType
The first object to compare.
right
Type: SystemType
The second object to compare.

Return Value

Type: Boolean
true if left is not equal to right; otherwise, false.
See Also