ValueTask.Inequality(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.
Determines whether two ValueTask values are unequal.
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 op_Inequality : 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 not 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
Współpracuj z nami w serwisie GitHub
Źródło tej zawartości można znaleźć w witrynie GitHub, gdzie można również tworzyć i przeglądać problemy i żądania ściągnięcia. Więcej informacji znajdziesz w naszym przewodniku dla współtwórców.