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的程序集。

返回

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

适用于