Beispiel #1
0
 /// <summary>
 /// Get the names of the arguments of the given Script from this GlobalMemory.
 /// </summary>
 /// <param name="r">The RAM used for this execution.</param>
 /// <param name="scriptName">The name of the Script (nested operators are executed).</param>
 /// <returns>The argument names</returns>
 public string[] GetScriptArguments(RAM r, object scriptName)
 {
     return(GlobalMemory.GetScriptArguments(r, scriptName));
 }
Beispiel #2
0
 /// <summary>
 /// Get the names of the arguments of the Script of the given name.
 /// </summary>
 /// <param name="scriptName">The name of the Script .</param>
 /// <returns>The argument names.</returns>
 public string[] GetScriptArguments(string scriptName)
 {
     return(GlobalMemory.GetScriptArguments(scriptName));
 }