WikiFunctions.Tools.GetTemplateArgumentCount C# (CSharp) Method

GetTemplateArgumentCount() public static method

Returns the number of arguments to the input template call, positional and named parameters
public static GetTemplateArgumentCount ( string template ) : int
template string The template call
return int
        public static int GetTemplateArgumentCount(string template)
        {
            return GetTemplateArgumentCount(template, false);
        }

Same methods

Tools::GetTemplateArgumentCount ( string template, bool populatedparametersonly ) : int
Tools