Byte.Equals Method (Byte)
Returns a value indicating whether this instance and a specified Byte object represent the same value.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Parameters
- obj
- Type: System.Byte
An object to compare to this instance.
Implements
IEquatable<T>.Equals(T)This method implements the System.IEquatable<T> interface, and performs slightly better than Equals(Object) because it does not have to convert the obj parameter to an object.
The following code example determines whether the first Byte value is equal to the second Byte value, and whether the first Byte value is equal to the boxed version of the second Byte value.
// This code example demonstrates the System.Byte.Equals(Object) and // System.Byte.Equals(Byte) methods. using System; class Sample { public static void Main() { byte byteVal1 = 0x7f; byte byteVal2 = 127; object objectVal3 = byteVal2; // Console.WriteLine("byteVal1 = {0}, byteVal2 = {1}, objectVal3 = {2}\n", byteVal1, byteVal2, objectVal3); Console.WriteLine("byteVal1 equals byteVal2?: {0}", byteVal1.Equals(byteVal2)); Console.WriteLine("byteVal1 equals objectVal3?: {0}", byteVal1.Equals(objectVal3)); } } /* This code example produces the following results: byteVal1 = 127, byteVal2 = 127, objectVal3 = 127 byteVal1 equals byteVal2?: True byteVal1 equals objectVal3?: True */
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.