WikiFunctions.Tools.AppendParameterToTemplate C# (CSharp) Method

AppendParameterToTemplate() public static method

Appends the input parameter and value to the input template
public static AppendParameterToTemplate ( string templateCall, string parameter, string newValue ) : string
templateCall string The input template call
parameter string The input parameter name
newValue string The input parameter value
return string
        public static string AppendParameterToTemplate(string templateCall, string parameter, string newValue)
        {
            return AppendParameterToTemplate(templateCall, parameter, newValue, false);
        }

Same methods

Tools::AppendParameterToTemplate ( string templateCall, string parameter, string newValue, bool unspaced ) : string
Tools