Byte.Equals Methode
Definition
Überlädt
Equals(Byte) |
Gibt einen Wert zurück, der angibt, ob diese Instanz und ein angegebenes Byte-Objekt den gleichen Wert darstellen.Returns a value indicating whether this instance and a specified Byte object represent the same value. |
Equals(Object) |
Gibt einen Wert zurück, der angibt, ob diese Instanz gleich einem angegebenen Objekt ist.Returns a value indicating whether this instance is equal to a specified object. |
Beispiele
Im folgenden Codebeispiel wird bestimmt, ob der erste Byte Wert gleich dem zweiten Byte Wert ist und ob der erste Byte Wert gleich der geboxten Version des zweiten Werts ist Byte .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
*/
// 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
*/
' This code example demonstrates the System.Byte.Equals(Object) and
' System.Byte.Equals(Byte) methods.
Class Sample
Public Shared Sub Main()
Dim byteVal1 As Byte = &H7F
Dim byteVal2 As Byte = 127
Dim objectVal3 As Object = byteVal2
'
Console.WriteLine("byteVal1 = {0}, byteVal2 = {1}, objectVal3 = {2}" & vbCrLf, _
byteVal1, byteVal2, objectVal3)
Console.WriteLine("byteVal1 equals byteVal2?: {0}", byteVal1.Equals(byteVal2))
Console.WriteLine("byteVal1 equals objectVal3?: {0}", byteVal1.Equals(objectVal3))
End Sub
End Class
'
'This code example produces the following results:
'
'byteVal1 = 127, byteVal2 = 127, objectVal3 = 127
'
'byteVal1 equals byteVal2?: True
'byteVal1 equals objectVal3?: True
'
Equals(Byte)
public:
virtual bool Equals(System::Byte obj);
public bool Equals (byte obj);
override this.Equals : byte -> bool
Public Function Equals (obj As Byte) As Boolean
Parameter
- obj
- Byte
Ein mit dieser Instanz zu vergleichendes Objekt.An object to compare to this instance.
Gibt zurück
true
, wenn obj
gleich dieser Instanz ist, andernfalls false
.true
if obj
is equal to this instance; otherwise, false
.
Implementiert
Hinweise
Diese Methode implementiert die System.IEquatable<T> -Schnittstelle und führt etwas besser Equals(Object) aus, als dass der-Parameter nicht obj
in ein-Objekt konvertiert werden muss.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.
Siehe auch
Gilt für:
Equals(Object)
Gibt einen Wert zurück, der angibt, ob diese Instanz gleich einem angegebenen Objekt ist.Returns a value indicating whether this instance is equal to a specified object.
public:
override bool Equals(System::Object ^ obj);
public override bool Equals (object obj);
public override bool Equals (object? obj);
override this.Equals : obj -> bool
Public Overrides Function Equals (obj As Object) As Boolean
Parameter
- obj
- Object
Ein Objekt, das mit dieser Instanz verglichen werden soll, oder null
.An object to compare with this instance, or null
.
Gibt zurück
true
, wenn obj
eine Instanz von Byte ist, deren Wert gleich dem Wert dieser Instanz ist, andernfalls false
.true
if obj
is an instance of Byte and equals the value of this instance; otherwise, false
.