WikiFunctions.Tools.RenameTemplate C# (CSharp) Method

RenameTemplate() public static method

Renames the input template to the new name given
public static RenameTemplate ( string templateCall, string newtemplatename ) : string
templateCall string the template call
newtemplatename string the new template name
return string
        public static string RenameTemplate(string templateCall, string newtemplatename)
        {
            return RenameTemplate(templateCall, newtemplatename, true);
        }

Same methods

Tools::RenameTemplate ( string templateCall, string newtemplatename, bool keepFirstLetterCase ) : string
Tools::RenameTemplate ( string articletext, string templatename, string newtemplatename ) : string
Tools::RenameTemplate ( string articletext, string templatename, string newtemplatename, bool keepFirstLetterCase ) : string
Tools::RenameTemplate ( string articletext, string templatename, string newtemplatename, int count ) : string
Tools