Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Tests the inequality between an object of type T and a ReportExpression<T> object.
Namespace: Microsoft.ReportingServices.RdlObjectModel
Assembly: Microsoft.ReportingServices.Designer.Controls (in Microsoft.ReportingServices.Designer.Controls.dll)
Syntax
'Declaration
Public Shared Operator <> ( _
left As ReportExpression(Of T), _
right As T _
) As Boolean
'Usage
Dim left As ReportExpression(Of T)
Dim right As T
Dim returnValue As Boolean
returnValue = (left <> right)
public static bool operator !=(
ReportExpression<T> left,
T right
)
public:
static bool operator !=(
ReportExpression<T> left,
T right
)
static let inline(<>)
left:ReportExpression<'T> *
right:'T : bool
JScript supports the use of overloaded operators, but not the declaration of new ones.
Parameters
- left
Type: Microsoft.ReportingServices.RdlObjectModel.ReportExpression<T>
A ReportExpression<T> object.
- right
Type: T
An object of type T.
Return Value
Type: System.Boolean
True if the object of type T is not equal to the ReportExpression<T> object; otherwise, false.