| TaskTEquality Operator |
Compares two
TaskT to determine whether they are the same.
Namespace: DigitalRune.ThreadingAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax public static bool operator ==(
Task<T> left,
Task<T> right
)
Public Shared Operator = (
left As Task(Of T),
right As Task(Of T)
) As Boolean
public:
static bool operator ==(
Task<T> left,
Task<T> right
)
static let inline (=)
left : Task<'T> *
right : Task<'T> : bool
Parameters
- left
- Type: DigitalRune.ThreadingTaskT
The first TaskT. - right
- Type: DigitalRune.ThreadingTaskT
The second TaskT.
Return Value
Type:
Boolean if the
left and
right are the
same; otherwise,
.
See Also