Share via


ValueBuffer.Equals Method

Definition

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