Message.Equality(Message, Message) Operator

Definition

Determines whether two instances of Message are equal.

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

Parameters

a
Message

A Message to compare to b.

b
Message

A Message to compare to a.

Returns

true if a and b represent the same Message; otherwise, false.

Remarks

The equivalent method for this operator is Message.Equals

Applies to