C# Class Grasp.VariableBinding

A binding between a variable and its value in a particular context
ファイルを表示 Open project: bwatts/Grasp Class Usage Examples

Public Methods

Method Description
ToString ( ) : string

Gets a textual representation of this binding

VariableBinding ( Variable variable, object value ) : System

Initializes a binding with the specified variable and value

Method Details

ToString() public method

Gets a textual representation of this binding
public ToString ( ) : string
return string

VariableBinding() public method

Initializes a binding with the specified variable and value
public VariableBinding ( Variable variable, object value ) : System
variable Variable The bound variable
value object The value to which the specified variable is bound
return System