IronRuby.Builtins.ModuleOps.AliasMethod C# (CSharp) Method

AliasMethod() private method

private AliasMethod ( RubyContext context, RubyModule self, [ newName, [ oldName ) : RubyModule
context RubyContext
self RubyModule
newName [
oldName [
return RubyModule
        public static RubyModule/*!*/ AliasMethod(RubyContext/*!*/ context, RubyModule/*!*/ self,
            [DefaultProtocol, NotNull]string/*!*/ newName, [DefaultProtocol, NotNull]string/*!*/ oldName) {

            self.AddMethodAlias(newName, oldName);
            return self;
        }