TextChange.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 text change are not equal.
Namespace: System.Web.Razor.Text
Assembly: System.Web.Razor (in System.Web.Razor.dll)
Syntax
'Declaration
Public Shared Operator <> ( _
left As TextChange, _
right As TextChange _
) As Boolean
'Usage
Dim left As TextChange
Dim right As TextChange
Dim returnValue As Boolean
returnValue = (left <> right)
public static bool operator !=(
TextChange left,
TextChange right
)
public:
static bool operator !=(
TextChange left,
TextChange right
)
static let inline(<>)
left:TextChange *
right:TextChange : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.
Parameters
- left
Type: System.Web.Razor.Text.TextChange
The left text change.
- right
Type: System.Web.Razor.Text.TextChange
The right text change.
Return Value
Type: System.Boolean
true if the two text change are not equal; otherwise, false.