Assembly.Inequality(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 进行比较的程序集。The assembly to compare to right.
- right
- Assembly
要与 left 进行比较的程序集。The assembly to compare to left.
返回
如果 true 不等于 left,则为 right;否则为 false。true if left is not equal to right; otherwise, false.