AsyncFlowControl.Inequality(AsyncFlowControl, AsyncFlowControl) 运算符
定义
比较两个 AsyncFlowControl 结构以确定它们是否不相等。Compares two AsyncFlowControl structures to determine whether they are not equal.
public:
static bool operator !=(System::Threading::AsyncFlowControl a, System::Threading::AsyncFlowControl b);
public static bool operator != (System.Threading.AsyncFlowControl a, System.Threading.AsyncFlowControl b);
static member op_Inequality : System.Threading.AsyncFlowControl * System.Threading.AsyncFlowControl -> bool
Public Shared Operator != (a As AsyncFlowControl, b As AsyncFlowControl) As Boolean
参数
AsyncFlowControl 结构。An AsyncFlowControl structure.
AsyncFlowControl 结构。An AsyncFlowControl structure.
返回
如果两个结构不相等,则为 true;否则为 false。true if the structures are not equal; otherwise, false.
注解
此运算符的等效方法为 AsyncFlowControl.Equals(AsyncFlowControl) 。The equivalent method for this operator is AsyncFlowControl.Equals(AsyncFlowControl).