ReportExpression.Inequality Operator

Definition

Tests the inequality of two expressions.

Overloads

Inequality(ReportExpression, ReportExpression)

Tests the inequality of two expressions.

Inequality(ReportExpression, String)

Tests the inequality of two expressions.

Inequality(String, ReportExpression)

Tests the inequality of two expressions.

Inequality(ReportExpression, ReportExpression)

Tests the inequality of two expressions.

public:
 static bool operator !=(Microsoft::ReportingServices::RdlObjectModel::ReportExpression left, Microsoft::ReportingServices::RdlObjectModel::ReportExpression right);
public static bool operator != (Microsoft.ReportingServices.RdlObjectModel.ReportExpression left, Microsoft.ReportingServices.RdlObjectModel.ReportExpression right);
static member op_Inequality : Microsoft.ReportingServices.RdlObjectModel.ReportExpression * Microsoft.ReportingServices.RdlObjectModel.ReportExpression -> bool
Public Shared Operator != (left As ReportExpression, right As ReportExpression) As Boolean

Parameters

Returns

True if the two expressions are not equal; otherwise, false.

Remarks

The equivalent method for this operator is <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression.Compare%28Microsoft.ReportingServices.RdlObjectModel.ReportExpression%2CMicrosoft.ReportingServices.RdlObjectModel.ReportExpression%29?displayProperty=fullName>

Applies to

Inequality(ReportExpression, String)

Tests the inequality of two expressions.

public:
 static bool operator !=(Microsoft::ReportingServices::RdlObjectModel::ReportExpression left, System::String ^ right);
public static bool operator != (Microsoft.ReportingServices.RdlObjectModel.ReportExpression left, string right);
static member op_Inequality : Microsoft.ReportingServices.RdlObjectModel.ReportExpression * string -> bool
Public Shared Operator != (left As ReportExpression, right As String) As Boolean

Parameters

right
String

An expression string.

Returns

True if the two expressions are not equal; otherwise, false.

Remarks

The equivalent method for this operator is <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression.Compare%28Microsoft.ReportingServices.RdlObjectModel.ReportExpression%2CSystem.String%29?displayProperty=fullName>

Applies to

Inequality(String, ReportExpression)

Tests the inequality of two expressions.

public:
 static bool operator !=(System::String ^ left, Microsoft::ReportingServices::RdlObjectModel::ReportExpression right);
public static bool operator != (string left, Microsoft.ReportingServices.RdlObjectModel.ReportExpression right);
static member op_Inequality : string * Microsoft.ReportingServices.RdlObjectModel.ReportExpression -> bool
Public Shared Operator != (left As String, right As ReportExpression) As Boolean

Parameters

left
String

An expression string.

Returns

True if the two expressions are not equal; otherwise, false.

Remarks

The equivalent method for this operator is <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression.Compare%28System.String%2CMicrosoft.ReportingServices.RdlObjectModel.ReportExpression%29?displayProperty=fullName>

Applies to