IronRuby.Builtins.IronRubyOps.Load C# (CSharp) Method

Load() private method

private Load ( IronRuby.Runtime.RubyScope scope, RubyModule self, MutableString libraryName ) : object
scope IronRuby.Runtime.RubyScope
self RubyModule
libraryName MutableString
return object
        public static object/*!*/ Load(RubyScope/*!*/ scope, RubyModule/*!*/ self, MutableString/*!*/ libraryName) {
            object loaded;
            scope.RubyContext.Loader.LoadFile(null, self, libraryName, LoadFlags.ResolveLoaded | LoadFlags.AnyLanguage, out loaded);
            Debug.Assert(loaded != null);
            return loaded;
        }