VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/queue-equals-method-in-c-sharp/

⇱ Queue.Equals() Method in C# - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Queue.Equals() Method in C#

Last Updated : 11 Jul, 2025
Equals(Object) Method which is inherited from the Object class is used to check if a specified Queue class object is equal to another Queue 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:
Output:
True
Example 2:
Output:
False
True
Comment

Explore