C# Class Grasp.Variable

The unit of data in a schema
ファイルを表示 Open project: bwatts/Grasp Class Usage Examples

Public Methods

Method Description
ToString ( ) : string

Gets the fully-qualified name of this variable

Variable ( string @namespace, string name, Type type ) : System

Initializes a variable with the specified namespace, name, and type

Private Methods

Method Description
Expression ( Variable variable ) : VariableExpression
IsName ( string value ) : bool
IsNamespace ( string value ) : bool

Method Details

ToString() public method

Gets the fully-qualified name of this variable
public ToString ( ) : string
return string

Variable() public method

Initializes a variable with the specified namespace, name, and type
public Variable ( string @namespace, string name, Type type ) : System
@namespace string
name string The name of the variable
type System.Type The type of value represented by the variable
return System