Assembly.Inequality(Assembly, Assembly) 运算符

定义

指示两个 Assembly 对象是否不相等。

public:
 static bool operator !=(System::Reflection::Assembly ^ left, System::Reflection::Assembly ^ right);
public static bool operator != (System.Reflection.Assembly? left, System.Reflection.Assembly? right);
public static bool operator != (System.Reflection.Assembly left, System.Reflection.Assembly right);
static member op_Inequality : System.Reflection.Assembly * System.Reflection.Assembly -> bool
Public Shared Operator != (left As Assembly, right As Assembly) As Boolean

参数

left
Assembly

要与 right 进行比较的程序集。

right
Assembly

要与 left 进行比较的程序集。

返回

Boolean

如果 true 不等于 left,则为 right;否则为 false

适用于