コード例 #1
0
 /// <summary>
 /// Get the Script with the given name.
 /// </summary>
 /// <param name="r">The RAM used for this execution.</param>
 /// <param name="scriptName">The name of the Script to get from (nested brack operations execute).</param>
 /// <returns>The Script found with the given name.</returns>
 public Script GetScript(RAM r, object scriptName)
 {
     return(GlobalMemory.GetScript(r, scriptName));
 }
コード例 #2
0
 /// <summary>
 /// Get the Script with the given name.
 /// </summary>
 /// <param name="scriptName">The name of the Script.</param>
 /// <returns>The Script found with the given name.</returns>
 public Script GetScript(string scriptName)
 {
     return(GlobalMemory.GetScript(scriptName));
 }