Table of Contents

Interface IEvaluation

Namespace
BOOSE
Assembly
BOOSE.dll

IEvaluation adds properties to get and set an Evaluations name, value and expression. An evaluation can be a variable declaration, such as "int total" or "real area". It can be change of value of a variable, such as "total = total + 1", the part after the "=" is an referred to as an "expression". In the first two cases the parser will generate an Int object and a Real Object. In the third case it will generate a "Evaluation" object.

public interface IEvaluation : ICommand
Inherited Members

Properties

Expression

string Expression { get; set; }

Property Value

string

Value

object Value { get; set; }

Property Value

object

VarName

string VarName { get; set; }

Property Value

string