HwndSourceParameters.Inequality Operator

Definition

Determines whether an HwndSourceParameters structure is not equal to another HwndSourceParameters structure.

public:
 static bool operator !=(System::Windows::Interop::HwndSourceParameters a, System::Windows::Interop::HwndSourceParameters b);
public static bool operator != (System.Windows.Interop.HwndSourceParameters a, System.Windows.Interop.HwndSourceParameters b);
static member op_Inequality : System.Windows.Interop.HwndSourceParameters * System.Windows.Interop.HwndSourceParameters -> bool
Public Shared Operator != (a As HwndSourceParameters, b As HwndSourceParameters) As Boolean

Parameters

a
HwndSourceParameters

The first HwndSourceParameters structure to compare.

b
HwndSourceParameters

The second HwndSourceParameters structure to compare.

Returns

true if the structures are not equal; otherwise, false.

Remarks

This implementation calls the Equals method and inverts the result.

Applies to