DynamicValue.Inequality Operator (DynamicValue, DynamicValue)

 

Specifies whether the two DynamicValue object are not equal.

Namespace:   Microsoft.Activities
Assembly:  Microsoft.Activities (in Microsoft.Activities.dll)

Syntax

public static bool operator !=(
    DynamicValue value1,
    DynamicValue value2
)
public:
static bool operator !=(
    DynamicValue^ value1,
    DynamicValue^ value2
)
static let inline (<>)
        value1:DynamicValue *
        value2:DynamicValue : bool
Public Shared Operator <> (
    value1 As DynamicValue,
    value2 As DynamicValue
) As Boolean

Parameters

Return Value

Type: System.Boolean

true if the two DynamicValue object is not equal; otherwise, false.

See Also

DynamicValue Class
Microsoft.Activities Namespace

Return to top