IronRuby.RubyHostingExtensions.GetRubyEngine C# (CSharp) Method

GetRubyEngine() public static method

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