ReportExpression<T>.Equality Operator (ReportExpression<T>, String)
Tests the equality between an expression 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 String _
) As Boolean
'Usage
Dim left As ReportExpression(Of T)
Dim right As String
Dim returnValue As Boolean
returnValue = (left = right)
public static bool operator ==(
ReportExpression<T> left,
string right
)
public:
static bool operator ==(
ReportExpression<T> left,
String^ right
)
static let inline(=)
left:ReportExpression<'T> *
right:string : 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: System.String
An expression string.
Return Value
Type: System.Boolean
True if the expression if equal to the ReportExpression<T> object; otherwise, false.