WikiFunctions.Tools.RemoveDuplicateTemplateParameters C# (CSharp) Method

RemoveDuplicateTemplateParameters() public static method

Removes duplicate (same or null) named parameters from template calls
public static RemoveDuplicateTemplateParameters ( string templatecall ) : string
templatecall string The template call to clean up
return string
        public static string RemoveDuplicateTemplateParameters(string templatecall)
        {
            Dictionary<string, string> Params = new Dictionary<string, string>();
            return RemoveDuplicateTemplateParameters(templatecall, Params);
        }

Same methods

Tools::RemoveDuplicateTemplateParameters ( string templatecall, string>.Dictionary templateparams ) : string
Tools