VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/uint16-equals-method-in-c-sharp-with-examples/

⇱ UInt16.Equals Method in C# with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

UInt16.Equals Method in C# with Examples

Last Updated : 11 Jul, 2025
UInt16.Equals Method is used to get a value which indicates whether the current instance is equal to a specified object or 16-bit unsigned integer or not. There are 2 methods in the overload list of this method as follows:
  • Equals(UInt16) Method
  • Equals(Object) Method

UInt16.Equals(UInt16) Method

This method is used to return a value indicating whether the current instance is equal to a specified 16-bit unsigned integer value or not.
Syntax: public bool Equals (ushort obj); Here, it takes a 16-bit unsigned integer value to compare to the current instance. Return Value: This method returns true if obj has the same value as this instance otherwise, false.
Below programs illustrate the use of UInt16.Equals(UInt16) Method: Example 1:
Output:
52 is not equal to 78
Example 2:
Output:
98 is not equal to 18
65 is equal to 65
100 is not equal to 40
65535 is not equal to 0

UInt16.Equals(Object) Method

This method is used to returns a value indicating whether the current instance is equal to a specified object or not.
Syntax: public override bool Equals (object obj); Here, it takes an object to compare with the current instance. Return Value: This method returns true if obj is an instance of UInt16 and equals the value of this instance otherwise, false.
Below programs illustrate the use of the above-discussed method: Example 1:
Output:
17 is not equal to 0
Example 2:
Output:
12 is not equal to 75
14 is not equal to 114
77 is not equal to 77
54 is not equal to 76
Reference:
Comment
Article Tags:

Explore