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.
public:
virtual bool Equals(Memory<T> other);
public:
bool Equals(Memory<T> other);
public bool Equals (Memory<T> other);
override this.Equals : Memory<'T> -> bool
Public Function Equals (other As Memory(Of T)) As Boolean
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:
other
is a Memory<T> or ReadOnlyMemory<T> object.Both objects point to the same array and have the same length.
The Equals(Memory<T>)
method performs a test for reference equality; it does not compare the elements of Memory<T> for equality.
Applies to
Equals(Object)
- Source:
- Memory.cs
- Source:
- Memory.cs
- Source:
- Memory.cs
Determines whether the specified object is equal to the current 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
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.