private void Run(DocumentParserOptions options)
        {
            var builder = new DocumentionBuilder();

            builder.CreateDocumentation(options);

            Process.Start(options.OutputDirectory);
        }
        private int Run(DocumentParserOptions options)
        {
            var builder = new DocumentionBuilder();

            var success = builder.TryCreateDocumentation(options);

            if (success)
            {
                return(0);
            }
            else
            {
                if (Debugger.IsAttached)
                {
                    Console.WriteLine("Press enter to clode");
                    Console.ReadLine();
                }

                return(1);
            }
        }