Condividi tramite


ReportExpression<T>.Inequality Operator

Definition

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 T and a ReportExpression<T> object.

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 T and a ReportExpression<T> object.

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

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

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

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.

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.

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>

Applies to