RuntimeTypeHandle.Inequality Operator (RuntimeTypeHandle, Object)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Indicates whether a RuntimeTypeHandle structure is not equal to an object.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Shared Operator <> ( _ left As RuntimeTypeHandle, _ right As Object _ ) As Boolean
Parameters
- left
- Type: System.RuntimeTypeHandle
A RuntimeTypeHandle structure to compare to right.
- right
- Type: System.Object
An object to compare to left.
Return Value
Type: System.Booleantrue if right is a RuntimeTypeHandle structure and is not equal to left; otherwise, false.
Using this operator to compare two variables of type RuntimeTypeHandle causes an ambiguous overload resolution error when compiled. Use the Equals method instead.
Show: