此方法用于获取一个值,该值指示当前实例是否等于指定的对象。
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.
下面的程序说明了上述方法的用法:
范例1:
// 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);
}
}
输出:
10 is not equal to 0
范例2:
// 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);
}
}
输出:
5 is not equal to 5
5 is not equal to 4
10 is not equal to 20
7 is equal to 7
参考:
- https://docs.microsoft.com/zh-cn/dotnet/api/system.byte.equals?view=netframework-4.7.2#System_Byte_Equals_System_Object_