







Implements the operator *.
Namespace: Optimization
Assembly: Optimization.Framework (in Optimization.Framework.dll) Version: 0.3.1036.0
Syntax
| C# |
|---|
public static Expression operator *( Term term, Variable variable ) |
| Visual Basic |
|---|
Public Shared Operator * ( _ term As Term, _ variable As Variable _ ) As Expression |
| Visual C++ |
|---|
public: static Expression^ operator *( Term^ term, Variable^ variable ) |
Parameters
- term
- Type: Optimization..::..Term
The term.
- variable
- Type: Optimization..::..Variable
The variable.
Return Value
The result of the operator.
Contracts
| Requires |
|---|
!variable.Equals(null) |
(Object)term != null |
| Ensures |
|---|
(Object)Contract.Result<Expression>() != null |
