Message.Equals Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Equals(Object) |
Determines whether the specified object is equal to the current object. |
Equals(Message) |
Indicates whether the current object is equal to another object of the same type. |
Equals(Object)
Determines whether the specified object is equal to the current object.
public:
override bool Equals(System::Object ^ o);
public override bool Equals (object o);
public override bool Equals (object? o);
public override readonly bool Equals (object? o);
override this.Equals : obj -> bool
Public Overrides Function Equals (o As Object) As Boolean
Parameters
- o
- Object
The object to compare with the current object.
Returns
true
if the specified object is equal to the current object; otherwise, false
.
Applies to
Equals(Message)
Indicates whether the current object is equal to another object of the same type.
public:
virtual bool Equals(System::Windows::Forms::Message other);
public bool Equals (System.Windows.Forms.Message other);
public readonly bool Equals (System.Windows.Forms.Message other);
override this.Equals : System.Windows.Forms.Message -> bool
Public Function Equals (other As Message) As Boolean
Parameters
- other
- Message
An object to compare with this object.
Returns
true
if the current object is equal to the other
parameter; otherwise, false
.