C# Class Grasp.Variable

The unit of data in a schema
Afficher le fichier Open project: bwatts/Grasp Class Usage Examples

Méthodes publiques

Méthode 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

Méthode Description
Expression ( Variable variable ) : VariableExpression
IsName ( string value ) : bool
IsNamespace ( string value ) : bool

Method Details

ToString() public méthode

Gets the fully-qualified name of this variable
public ToString ( ) : string
Résultat string

Variable() public méthode

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
Résultat System