ValueBuffer.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(ValueBuffer) |
Indicates whether the current object is equal to another object of the same type. |
Equals(Object) |
Determines if this value buffer is equivalent to a given object (i.e. if they are both value buffers and contain the same values). |
Equals(ValueBuffer)
Indicates whether the current object is equal to another object of the same type.
public bool Equals (Microsoft.EntityFrameworkCore.Storage.ValueBuffer other);
override this.Equals : Microsoft.EntityFrameworkCore.Storage.ValueBuffer -> bool
Public Function Equals (other As ValueBuffer) As Boolean
Parameters
- other
- ValueBuffer
An object to compare with this object.
Returns
true
if the current object is equal to the other
parameter; otherwise, false
.
Implements
Applies to
Equals(Object)
Determines if this value buffer is equivalent to a given object (i.e. if they are both value buffers and contain the same values).
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 this value buffer to.
Returns
true
if the object is a ValueBuffer and contains the same values, otherwise false
.
Applies to
Entity Framework