| TaskIdEquality Operator |
Determines whether two specified instances have the same value.
Namespace:
Ookii.Jumbo.Jet
Assembly:
Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax public static bool operator ==(
TaskId left,
TaskId right
)
Public Shared Operator = (
left As TaskId,
right As TaskId
) As Boolean
public:
static bool operator ==(
TaskId^ left,
TaskId^ right
)
static let inline (=)
left : TaskId *
right : TaskId : bool
Parameters
- left
- Type: Ookii.Jumbo.JetTaskId
The first instance to compare, or . - right
- Type: Ookii.Jumbo.JetTaskId
The second instance to compare, or .
Return Value
Type:
Boolean if the value of
left is the same as the value of
right; otherwise,
.
See Also