UInt32.Equals Method is used to get a value which indicates whether the current instance is equal to a specified object or 32-bit unsigned integer or not. There are 2 methods in the overload list of this method as follows:
- Equals(UInt32) Method
- Equals(Object) Method
UInt32.Equals(UInt32) Method
This method is used to return a value indicating whether the current instance is equal to a specified 32-bit unsigned integer value or not.
Syntax: public bool Equals (uint obj);
Here, it takes a 32-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
UInt32.Equals(UInt32) Method:
Example 1:
Output:
5322 is not equal to 7328
Example 2:
Output:
9128 is not equal to 1978
6455 is equal to 6455
10120 is equal to 10120
4294967295 is not equal to 0
UInt32.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 UInt32 and equals the value of this instance otherwise, false.
Below programs illustrate the use of the above-discussed method:
Example 1:
Output:
11227 is not equal to 0
Example 2: