Method in MemoryVariableStore
Stores a string
in this VariableStorage.
Name | Description |
---|---|
string
variableName
The name to associate with this variable.
string
stringValue
The string to store.
| The name to associate with this variable. |
| The boolean value to store. |
| The name to associate with this variable. |
| The number to store. |
Removes all variables from storage. |
Stores a |
Stores a |
Stores a |
Retrieves a value of type |
Method in MemoryVariableStore
Retrieves a value of type T
by name.
Name | Description |
---|---|
Name | Description |
---|---|
true
if a value named variableName
of type T
was retrieved; false
otherwise.
string
variableName
The name of the variable to retrieve the value of.
T
result
On return, if this method returned true, contains the retrieved value. If this method returned false, contains the default value of T
(for example, 0
for float
values, null
for strings, and so on.)
T
The type of the variable to retrieve.