C# Class ComponentFactory.Quicksilver.Binding.EvalNodeExponent

EvalNode that represents a binary exponent operation.
Inheritance: EvalNode
Show file Open project: ComponentFactory/Quicksilver Class Usage Examples

Public Methods

Method Description
EvalNodeExponent ( EvalNode child, System.Language language ) : System

Instantiate a new instance of the EvalNodeExponent node.

Evaluate ( object thisObject ) : EvalResult

Evalaute this node and return result.

ToString ( ) : string

Human readable version of the algebraic expression.

Method Details

EvalNodeExponent() public method

Instantiate a new instance of the EvalNodeExponent node.
public EvalNodeExponent ( EvalNode child, System.Language language ) : System
child EvalNode Specifies the first child node.
language System.Language Language syntax and semantics to use.
return System

Evaluate() public method

Evalaute this node and return result.
public Evaluate ( object thisObject ) : EvalResult
thisObject object Reference to object that is exposed as 'this'.
return EvalResult

ToString() public method

Human readable version of the algebraic expression.
public ToString ( ) : string
return string