Method | Description | |
---|---|---|
AddIdent ( |
Adds a temporary identifier of the given type and name
|
|
AddIdent ( |
Adds a temporary identifier of the given type and name and initializes it to the given initValue
|
|
Assign ( string name, object value ) : void |
Assigns the given value to the temporary identifier of the given name
|
|
Lookup ( string name ) : |
Looks up temporary identifier of the given name and returns it
|
public static AddIdent ( |
||
type | Type of identifier | |
name | string | Name of identifier |
return | void |
public static AddIdent ( |
||
type | Type of identifier | |
name | string | Name of identifier |
initValue | dynamic | Initial value of identifer |
return | void |
public static Assign ( string name, object value ) : void | ||
name | string | Identifier name |
value | object | Value to assign identifier |
return | void |
public static Lookup ( string name ) : |
||
name | string | Identifier name to look up |
return |