Číst v angličtině Upravit

Sdílet prostřednictvím


Memory<T>.Equals Method

Definition

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Overloads

Equals(Memory<T>)

Determines whether the specified Memory<T> object is equal to the current object.

Equals(Object)

Determines whether the specified object is equal to the current object.

Equals(Memory<T>)

Source:
Memory.cs
Source:
Memory.cs
Source:
Memory.cs

Determines whether the specified Memory<T> object is equal to the current object.

C#
public bool Equals(Memory<T> other);

Parameters

other
Memory<T>

The object to compare with the current instance.

Returns

true if the current instance and other are equal; otherwise, false.

Implements

Remarks

The two objects are equal if:

The Equals(Memory<T>) method performs a test for reference equality; it does not compare the elements of Memory<T> for equality.

Applies to

.NET 10 a další verze
Produkt Verze
.NET Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Standard 2.0 (package-provided), 2.1

Equals(Object)

Source:
Memory.cs
Source:
Memory.cs
Source:
Memory.cs

Determines whether the specified object is equal to the current object.

C#
public override bool Equals(object? obj);
C#
public override bool Equals(object obj);

Parameters

obj
Object

The object to compare with the current instance.

Returns

true if the current instance and obj are equal; otherwise, false.

Remarks

Two Memory<T> objects are equal if both objects point to the same array and have the same length. Note that the test for equality does not check whether the contents are equal.

Applies to

.NET 10 a další verze
Produkt Verze
.NET Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Standard 2.0 (package-provided), 2.1