ReportExpression<T>.Inequality 运算符

定义

测试两个对象是否不相等。

重载

Inequality(ReportExpression<T>, ReportExpression<T>)

测试两个 ReportExpression<T> 对象是否不相等。

Inequality(ReportExpression<T>, String)

测试某个表达式和 ReportExpression<T> 对象是否不相等。

Inequality(ReportExpression<T>, T)

测试类型为 T 的对象和 ReportExpression<T> 对象是否不相等。

Inequality(String, ReportExpression<T>)

测试某个表达式和 ReportExpression<T> 对象是否不相等。

Inequality(T, ReportExpression<T>)

测试类型为 T 的对象和 ReportExpression<T> 对象是否不相等。

Inequality(ReportExpression<T>, ReportExpression<T>)

测试两个 ReportExpression<T> 对象是否不相等。

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

参数

返回

如果两个 ReportExpression<T> 对象不相等,则为 True;否则为 false

注解

此运算符的等效方法为 <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression%601.Compare%28Microsoft.ReportingServices.RdlObjectModel.ReportExpression%7B%600%7D%2CMicrosoft.ReportingServices.RdlObjectModel.ReportExpression%7B%600%7D%29?displayProperty=fullName>

适用于

Inequality(ReportExpression<T>, String)

测试某个表达式和 ReportExpression<T> 对象是否不相等。

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

参数

right
String

一个表达式字符串。

返回

如果该表达式不等于 ReportExpression<T> 对象,则为 True;否则为 false

注解

此运算符的等效方法为 <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression%601.Compare%28Microsoft.ReportingServices.RdlObjectModel.ReportExpression%7B%600%7D%2CSystem.String%29?displayProperty=fullName>

适用于

Inequality(ReportExpression<T>, T)

测试类型为 T 的对象和 ReportExpression<T> 对象是否不相等。

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

参数

right
T

一个 T 类型的对象。

返回

如果类型为 True 的对象与 ReportExpression<T> 对象不相等,则为 T;否则为 false

注解

此运算符的等效方法为 <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression%601.Compare%28Microsoft.ReportingServices.RdlObjectModel.ReportExpression%7B%600%7D%2C%600%29?displayProperty=fullName>

适用于

Inequality(String, ReportExpression<T>)

测试某个表达式和 ReportExpression<T> 对象是否不相等。

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

参数

left
String

一个表达式字符串。

返回

如果该表达式不等于 ReportExpression<T> 对象,则为 True;否则为 false

注解

此运算符的等效方法为 <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression%601.Compare%28System.String%2CMicrosoft.ReportingServices.RdlObjectModel.ReportExpression%7B%600%7D%29?displayProperty=fullName>

适用于

Inequality(T, ReportExpression<T>)

测试类型为 T 的对象和 ReportExpression<T> 对象是否不相等。

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

参数

left
T

一个 T 类型的对象。

返回

如果类型为 True 的对象与 ReportExpression<T> 对象不相等,则为 T;否则为 false

注解

此运算符的等效方法为 <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression%601.Compare%28%600%2CMicrosoft.ReportingServices.RdlObjectModel.ReportExpression%7B%600%7D%29?displayProperty=fullName>

适用于