IronRuby.Runtime.AliasMethodAttribute.AliasMethodAttribute C# (CSharp) Method

AliasMethodAttribute() public method

public AliasMethodAttribute ( string newName, string oldName ) : System
newName string
oldName string
return System
        public AliasMethodAttribute(string/*!*/ newName, string/*!*/ oldName) {
            ContractUtils.RequiresNotNull(newName, "newName");
            ContractUtils.RequiresNotNull(oldName, "oldName");
            _newName = newName;
            _oldName = oldName;
        }
    }
AliasMethodAttribute