Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Class in Yarn
Inherits from System.Object
A compiled Yarn program.
Gets a value indicating the kind of variable name
represents.
Identifies and returns a list of all line and option IDs inside the node.
Attempts to fetch a value for a variable named variableName
from this program's collection of initial values.
The collection of initial values for variables; if a PUSH_VARIABLE instruction is run, and the value is not found in the storage, this value will be used
The name of the program.
The collection of nodes in this program.
Method in Program
Identifies and returns a list of all line and option IDs inside the node.
string
nodeName
The name of the node whos line IDs you covet.
The line IDs of all lines and options inside the node, or null if nodeName
doesn't exist in the program.
Method in Program
Gets a value indicating the kind of variable name
represents.
string
name
The name of a variable.
The kind of variable that name
represents.
Method in Program
Attempts to fetch a value for a variable named variableName
from this program's collection of initial values.
string
variableName
The name of the variable to retrieve a value for.
T
result
On return, contains the value of the variable, or the default value of T
if not known. Depending on what T
is, this value may be null
.
T
The type of variable to retrieve.
true
if an initial value for variableName
was found; false
otherwise.