WikiFunctions.Tools.GetTemplateArgumentCount C# (CSharp) 메소드

GetTemplateArgumentCount() 공개 정적인 메소드

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
리턴 int
        public static int GetTemplateArgumentCount(string template)
        {
            return GetTemplateArgumentCount(template, false);
        }

Same methods

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