WriteSolutionExplorerSuffix() публичный статический Метод

public static WriteSolutionExplorerSuffix ( TextWriter writer ) : void
writer System.IO.TextWriter
Результат void
        private void WriteSolutionExplorer(Folder root = null)
        {
            if (root == null)
            {
                return;
            }

            Sort(root);

            using (var writer = new StreamWriter(Path.Combine(SolutionDestinationFolder, Constants.SolutionExplorer + ".html")))
            {
                Log.Write("Solution Explorer...");
                Markup.WriteSolutionExplorerPrefix(writer);
                WriteFolder(root, writer);
                Markup.WriteSolutionExplorerSuffix(writer);
            }
        }