Equals(Object) Method which is inherited from the
Object class is used to check if a specified
Stack class object is equal to another Stack class object or not. This method comes under the
System.Collections namespace.
Syntax:
public virtual bool Equals (object obj);
Here,
obj is the object which is to be compared with the current object.
Return Value: This method return
true if the specified object is equal to the current object otherwise it returns false.
Below programs illustrate the use of the above-discussed method:
Example 1:
Example 2: