MathimaticalExpression Constructor(MathimaticalOperation,Expression,Type)
See Also 
SourceCode.Workflow.Design.SimpleRules Namespace > MathimaticalExpression Class > MathimaticalExpression Constructor : MathimaticalExpression Constructor(MathimaticalOperation,Expression,Type)



operation
The mathimatical operation.
list
The list to perform mathimatical operations on.
valueType
Type of the resulting value.

Glossary Item Box

Initializes a new instance of the MathimaticalExpression class.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal operation As MathimaticalOperation, _
   ByVal list As Expression, _
   ByVal valueType As Type _
)
Visual Basic (Usage)Copy Code
Dim operation As MathimaticalOperation
Dim list As Expression
Dim valueType As Type
 
Dim instance As New MathimaticalExpression(operation, list, valueType)
C# 
public MathimaticalExpression( 
   MathimaticalOperation operation,
   Expression list,
   Type valueType
)
C++/CLI 
public:
MathimaticalExpression( 
   MathimaticalOperation operation,
   Expression^ list,
   Type^ valueType
)

Parameters

operation
The mathimatical operation.
list
The list to perform mathimatical operations on.
valueType
Type of the resulting value.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also