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