Interface IExpressionVisitor<T>
Interface is used to transform Expressions into a form that can be understood by a specific ISolver.
Namespace: OPTANO.Modeling.Optimization.Interfaces
Assembly: Optimization.dll
Syntax
public interface IExpressionVisitor<T>
Type Parameters
| Name | Description |
|---|---|
| T | The type of the transformed Expression |
Methods
Visit(Expression)
Parses the exp.
Declaration
T Visit(Expression exp)
Parameters
| Type | Name | Description |
|---|---|---|
| Expression | exp | The expression. |
Returns
| Type | Description |
|---|---|
| T | The transformed Expression of type |