Manos.Tool.Driver.RunDocs C# (CSharp) 메소드

RunDocs() 공개 메소드

public RunDocs ( ) : void
리턴 void
        public void RunDocs()
        {
            DocsCommand cmd = new DocsCommand (Environment);

            cmd.Run ();
        }

Usage Example

예제 #1
0
        private static int Docs(IList <string> args)
        {
            Driver d = new Driver();

            try {
                d.RunDocs();
            } catch (Exception e) {
                Console.WriteLine("error while serving application:");
                Console.WriteLine(e);
                return(1);
            }

            return(0);
        }
All Usage Examples Of Manos.Tool.Driver::RunDocs