Byte::Equals Method (Byte)
.NET Framework (current version)
Returns a value indicating whether this instance and a specified Byte object represent the same value.
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.
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 */
Universal Windows Platform
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: