This documentation is archived and is not being maintained.
Byte::Equals Method (Object)
Visual Studio 2010
Returns a value indicating whether this instance is equal to a specified object.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- obj
- Type: System::Object
An object to compare with this instance, or nullptr.
Return Value
Type: System::Booleantrue if obj is an instance of Byte and equals the value of this instance; otherwise, false.
The following 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.
using namespace System; 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 example displays the following output: byteVal1 = 127, byteVal2 = 127, objectVal3 = 127 byteVal1 equals byteVal2?: True byteVal1 equals objectVal3?: True */
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: