IronRuby.Builtins.RubyModule.RemoveMethodNoCacheInvalidation C# (CSharp) Method

RemoveMethodNoCacheInvalidation() private method

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