GetEngine() public static method

Retrieves an IronRuby engine from a given script runtime.
/// The is not set up to run IronRuby. /// The doesn't contain IronRuby's . ///
public static GetEngine ( ScriptRuntime runtime ) : ScriptEngine
runtime Microsoft.Scripting.Hosting.ScriptRuntime The runtime to get the engine from.
return ScriptEngine
Example #1
0
 public static ScriptEngine /*!*/ GetRubyEngine(this ScriptRuntime /*!*/ runtime)
 {
     return(Ruby.GetEngine(runtime));
 }