IronRuby.Builtins.RubyModule.AddMethodNoCacheInvalidation C# (CSharp) Метод

AddMethodNoCacheInvalidation() приватный Метод

Direct addition to the method table. Used only for core method table operations. Do not use unless absolutely sure there is no overriding method used in a dynamic site.
private AddMethodNoCacheInvalidation ( string name, IronRuby.Runtime.Calls.RubyMemberInfo method ) : void
name string
method IronRuby.Runtime.Calls.RubyMemberInfo
Результат void
        internal void AddMethodNoCacheInvalidation(string/*!*/ name, RubyMemberInfo/*!*/ method) {
            Context.RequiresClassHierarchyLock();
            Debug.Assert(_methods != null);
            _methods.Add(name, method);
        }
RubyModule