Share via


Divide<T> Constructor

 

Initializes a new instance of the Divide<T> class.

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

Overload List

Name Description
System_CAPS_pubmethod Divide<T>()

Initializes a new instance of the Divide<T> class.

System_CAPS_pubmethod Divide<T>(InArgument<T>, InArgument<T>)

Initializes a new instance of the Divide<T> class.

See Also

Divide<T> Class
Microsoft.Activities.Expressions Namespace

Return to top

Divide<T> Constructor ()

Initializes a new instance of the Divide<T> class.

Syntax

public Divide()
public:
Divide()
new : unit -> Divide
Public Sub New

Return to top

Divide<T> Constructor (InArgument<T>, InArgument<T>)

Initializes a new instance of the Divide<T> class.

Syntax

public Divide(
    InArgument<T> left,
    InArgument<T> right
)
public:
Divide(
    InArgument<T>^ left,
    InArgument<T>^ right
)
new : 
        left:InArgument<'T> *
        right:InArgument<'T> -> Divide
Public Sub New (
    left As InArgument(Of T),
    right As InArgument(Of T)
)

Parameters

Return to top