ValueTask.Equality(ValueTask, ValueTask) Operator
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.
Compares two ValueTask values for equality.
public:
static bool operator ==(System::Threading::Tasks::ValueTask left, System::Threading::Tasks::ValueTask right);
public static bool operator == (System.Threading.Tasks.ValueTask left, System.Threading.Tasks.ValueTask right);
static member ( = ) : System.Threading.Tasks.ValueTask * System.Threading.Tasks.ValueTask -> bool
Public Shared Operator == (left As ValueTask, right As ValueTask) As Boolean
Parameters
- left
- ValueTask
The first value to compare.
- right
- ValueTask
The second value to compare.
Returns
true
if the two ValueTask values are equal; otherwise, false
.
Remarks
Two ValueTask instances are equal when they wrap the same Task or the same pair of the IValueTaskSource object and the token.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.