TryGetVariable
public bool TryGetVariable(string name, out object value) ;
Get the value of Variable.
Parameter Name | Description |
---|---|
name | Name. |
value | The value you get. |
The true when there parameters of the specified name.
public bool TryGetVariable(int id, out object value) ;
Get the value of Variable.
Parameter Name | Description |
---|---|
id | ID. |
value | The value you get. |
The true when there parameters of the specified name.
public bool TryGetVariable<TVariable>(string name, out TVariable value) ;
Get the value of Variable.
Type Parameter Name | Description | Type Constraints |
---|---|---|
TVariable | Type of Variable to get |
Parameter Name | Description |
---|---|
name | Name. |
value | The value you get. |
The true when there parameters of the specified name.
public bool TryGetVariable<TVariable>(int id, out TVariable value) ;
Get the value of Variable.
Type Parameter Name | Description | Type Constraints |
---|---|---|
TVariable | Type of Variable to get |
Parameter Name | Description |
---|---|
id | ID. |
value | The value you get. |
The true when there parameters of the specified name.