ValueTuple.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.
Returns a value that indicates whether the current ValueTuple instance is equal to the specified object.
Overloads
Equals(ValueTuple) |
Determines whether two ValueTuple instances are equal. This method always returns |
Equals(Object) |
Returns a value that indicates whether the current ValueTuple instance is equal to a specified object. |
Equals(ValueTuple)
- Source:
- ValueTuple.cs
- Source:
- ValueTuple.cs
- Source:
- ValueTuple.cs
Determines whether two ValueTuple instances are equal. This method always returns true
.
public:
virtual bool Equals(ValueTuple other);
public bool Equals (ValueTuple other);
override this.Equals : ValueTuple -> bool
Public Function Equals (other As ValueTuple) As Boolean
Parameters
- other
- ValueTuple
The value tuple to compare with the current instance.
Returns
This method always returns true
.
Implements
Applies to
Equals(Object)
- Source:
- ValueTuple.cs
- Source:
- ValueTuple.cs
- Source:
- ValueTuple.cs
Returns a value that indicates whether the current ValueTuple 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
Parameters
- obj
- Object
The object to compare to the current instance.
Returns
true
if obj
is a ValueTuple instance; otherwise, false
.