LocationTagged<T>.Inequality Operator
This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Determines whether the two LocationTaggedUTP object are not equal.
Namespace: System.Web.Razor.Text
Assembly: System.Web.Razor (in System.Web.Razor.dll)
Syntax
'Declaration
Public Shared Operator <> ( _
left As LocationTagged(Of T), _
right As LocationTagged(Of T) _
) As Boolean
'Usage
Dim left As LocationTagged(Of T)
Dim right As LocationTagged(Of T)
Dim returnValue As Boolean
returnValue = (left <> right)
public static bool operator !=(
LocationTagged<T> left,
LocationTagged<T> right
)
public:
static bool operator !=(
LocationTagged<T>^ left,
LocationTagged<T>^ right
)
static let inline(<>)
left:LocationTagged<'T> *
right:LocationTagged<'T> : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.
Parameters
- left
Type: System.Web.Razor.Text.LocationTagged<T>
The first object to compare.
- right
Type: System.Web.Razor.Text.LocationTagged<T>
The second objet to compare.
Return Value
Type: System.Boolean
true if the two object are not equal; otherwise, false.