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

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

Direct removal from the method table. Used only for core method table operations.
private RemoveMethodNoCacheInvalidation ( string name ) : bool
name string
Результат bool
        internal bool RemoveMethodNoCacheInvalidation(string/*!*/ name) {
            Context.RequiresClassHierarchyLock();
            Debug.Assert(_methods != null);
            return _methods.Remove(name);
        }
RubyModule