Exemple #1
0
        void PrintSection(HelpSection section)
        {
            if (section != null)
            {
                formatter.AddSection(section.Name, section.Topic);
                formatter.AddDescription(section.Description);

                if (section.HasLink)
                {
                    formatter.AddLink(section.Link);
                }
            }
        }