C# | Byte.Equals(Object) Method Last Updated : 11 Jul, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report This method is used to get a value which indicates 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 or null. Return Value: This method returns true if obj is an instance of Byte and equals the value of current instance otherwise, false. Below programs illustrate the use of the above-discussed method: Example 1: csharp // C# program to demonstrate the // Byte.Equals(Object) Method using System; class GFG { // Main Method public static void Main() { // Declaring and initializing value1 byte value1 = 10; // Declaring and initializing value2 object value2 = 2/47; // using Equals(object) method bool status = value1.Equals(value2); // checking the status if (status) Console.WriteLine("{0} is equal to {1}", value1, value2); else Console.WriteLine("{0} is not equal to {1}", value1, value2); } } Output: 10 is not equal to 0 Example 2: csharp // C# program to demonstrate the // Byte.Equals(Object) Method using System; class GFG { // Main Method public static void Main() { // calling get() method get(5, 5); get(5, 4); get(10, 20); // using explicit type casting get(7, (byte)7); } // defining get() method public static void get(byte value1, object value2) { // using Equals(object) method bool status = value1.Equals(value2); // checking the status if (status) Console.WriteLine("{0} is equal to {1}", value1, value2); else Console.WriteLine("{0} is not equal to {1}", value1, value2); } } Output: 5 is not equal to 5 5 is not equal to 4 10 is not equal to 20 7 is equal to 7 Reference: https://learn.microsoft.com/en-us/dotnet/api/system.byte.equals?view=netframework-4.7.2#System_Byte_Equals_System_Object_ Comment More infoAdvertise with us Next Article C# | Boolean.Equals(Object) Method K Kirti_Mangal Follow Improve Article Tags : C# CSharp-method CSharp-Byte-Struct Similar Reads C# | Boolean.Equals(Object) Method Boolean.Equals(Object) Method is used to get a value which indicates 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 true if obj 2 min read C# | Boolean.Equals(Object) Method Boolean.Equals(Object) Method is used to get a value which indicates 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 true if obj 2 min read C# | Uri.Equals(Object) Method Uri.Equals(Object) Method is used to compare two Uri instances for equality. Syntax: public override bool Equals (object comparand); Here, it takes the Uri instance or a URI identifier to compare with the current instance. Return Value: This method returns a Boolean value true if the two instances r 2 min read C# | Uri.Equals(Object) Method Uri.Equals(Object) Method is used to compare two Uri instances for equality. Syntax: public override bool Equals (object comparand); Here, it takes the Uri instance or a URI identifier to compare with the current instance. Return Value: This method returns a Boolean value true if the two instances r 2 min read C# | Byte.Equals(Byte) Method This method is used to return a value indicating whether this instance and a specified Byte object represent the same value. Syntax: public bool Equals (byte obj); Here, obj is a byte object to compare to this instance. Return Value: This method returns true if obj is equal to this instance otherwis 2 min read C# | Byte.Equals(Byte) Method This method is used to return a value indicating whether this instance and a specified Byte object represent the same value. Syntax: public bool Equals (byte obj); Here, obj is a byte object to compare to this instance. Return Value: This method returns true if obj is equal to this instance otherwis 2 min read Like