ReportExpression<T>.Inequality Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Tests the inequality between two objects.
Overloads
Inequality(ReportExpression<T>, ReportExpression<T>) |
Tests the inequality between two ReportExpression<T> objects. |
Inequality(ReportExpression<T>, String) |
Tests the inequality between an expression and a ReportExpression<T> object. |
Inequality(ReportExpression<T>, T) |
Tests the inequality between an object of type |
Inequality(String, ReportExpression<T>) |
Tests the inequality between an expression and a ReportExpression<T> object. |
Inequality(T, ReportExpression<T>) |
Tests the inequality between an object of type |
Inequality(ReportExpression<T>, ReportExpression<T>)
Tests the inequality between two ReportExpression<T> objects.
public:
static bool operator !=(Microsoft::ReportingServices::RdlObjectModel::ReportExpression<T> left, Microsoft::ReportingServices::RdlObjectModel::ReportExpression<T> right);
public static bool operator != (Microsoft.ReportingServices.RdlObjectModel.ReportExpression<T> left, Microsoft.ReportingServices.RdlObjectModel.ReportExpression<T> right);
static member op_Inequality : Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)> * Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)> -> bool
Public Shared Operator != (left As ReportExpression(Of T), right As ReportExpression(Of T)) As Boolean
Parameters
- left
- ReportExpression<T>
A ReportExpression<T> object.
- right
- ReportExpression<T>
A ReportExpression<T> object.
Returns
True
if the two ReportExpression<T> objects are not equal; otherwise, false
.
Remarks
The equivalent method for this operator is <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression%601.Compare%28Microsoft.ReportingServices.RdlObjectModel.ReportExpression%7B%600%7D%2CMicrosoft.ReportingServices.RdlObjectModel.ReportExpression%7B%600%7D%29?displayProperty=fullName>
Applies to
Inequality(ReportExpression<T>, String)
Tests the inequality between an expression and a ReportExpression<T> object.
public:
static bool operator !=(Microsoft::ReportingServices::RdlObjectModel::ReportExpression<T> left, System::String ^ right);
public static bool operator != (Microsoft.ReportingServices.RdlObjectModel.ReportExpression<T> left, string right);
static member op_Inequality : Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)> * string -> bool
Public Shared Operator != (left As ReportExpression(Of T), right As String) As Boolean
Parameters
- left
- ReportExpression<T>
A ReportExpression<T> object.
- right
- String
An expression string.
Returns
True
if the expression is not equal to the ReportExpression<T> object; otherwise, false
.
Remarks
The equivalent method for this operator is <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression%601.Compare%28Microsoft.ReportingServices.RdlObjectModel.ReportExpression%7B%600%7D%2CSystem.String%29?displayProperty=fullName>
Applies to
Inequality(ReportExpression<T>, T)
Tests the inequality between an object of type T
and a ReportExpression<T> object.
public:
static bool operator !=(Microsoft::ReportingServices::RdlObjectModel::ReportExpression<T> left, T right);
public static bool operator != (Microsoft.ReportingServices.RdlObjectModel.ReportExpression<T> left, T right);
static member op_Inequality : Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)> * 'T -> bool
Public Shared Operator != (left As ReportExpression(Of T), right As T) As Boolean
Parameters
- left
- ReportExpression<T>
A ReportExpression<T> object.
- right
- T
An object of type T
.
Returns
True
if the object of type T
is not equal to the ReportExpression<T> object; otherwise, false
.
Remarks
The equivalent method for this operator is <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression%601.Compare%28Microsoft.ReportingServices.RdlObjectModel.ReportExpression%7B%600%7D%2C%600%29?displayProperty=fullName>
Applies to
Inequality(String, ReportExpression<T>)
Tests the inequality between an expression and a ReportExpression<T> object.
public:
static bool operator !=(System::String ^ left, Microsoft::ReportingServices::RdlObjectModel::ReportExpression<T> right);
public static bool operator != (string left, Microsoft.ReportingServices.RdlObjectModel.ReportExpression<T> right);
static member op_Inequality : string * Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)> -> bool
Public Shared Operator != (left As String, right As ReportExpression(Of T)) As Boolean
Parameters
- left
- String
An expression string.
- right
- ReportExpression<T>
A ReportExpression<T> object.
Returns
True
if the expression is not equal to the ReportExpression<T> object; otherwise, false
.
Remarks
The equivalent method for this operator is <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression%601.Compare%28System.String%2CMicrosoft.ReportingServices.RdlObjectModel.ReportExpression%7B%600%7D%29?displayProperty=fullName>
Applies to
Inequality(T, ReportExpression<T>)
Tests the inequality between an object of type T
and a ReportExpression<T> object.
public:
static bool operator !=(T left, Microsoft::ReportingServices::RdlObjectModel::ReportExpression<T> right);
public static bool operator != (T left, Microsoft.ReportingServices.RdlObjectModel.ReportExpression<T> right);
static member op_Inequality : 'T * Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)> -> bool
Public Shared Operator != (left As T, right As ReportExpression(Of T)) As Boolean
Parameters
- left
- T
An object of type T
.
- right
- ReportExpression<T>
A ReportExpression<T> object.
Returns
True
if the object of type T
is not equal to the ReportExpression<T> object; otherwise, false
.
Remarks
The equivalent method for this operator is <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression%601.Compare%28%600%2CMicrosoft.ReportingServices.RdlObjectModel.ReportExpression%7B%600%7D%29?displayProperty=fullName>