RuntimeTypeHandle.Inequality Operator (Object, RuntimeTypeHandle)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Indicates whether an object and a RuntimeTypeHandle structure are not equal.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Shared Operator <> ( _ left As Object, _ right As RuntimeTypeHandle _ ) As Boolean
Parameters
- left
- Type: System.Object
An object to compare to right.
- right
- Type: System.RuntimeTypeHandle
A RuntimeTypeHandle structure to compare to left.
Return Value
Type: System.Booleantrue if left is a RuntimeTypeHandle and is not equal to right; 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: