Example #1
0
		private static void Main (string[] args)
		{
			MDoc d = new MDoc ();
			try {
				d.Run (args);
			}
			catch (Exception e) {
				if (debug) {
					Console.Error.WriteLine ("mdoc: {0}", e.ToString ());
				}
				else {
					Console.Error.WriteLine ("mdoc: {0}", e.Message);
				}
				Console.Error.WriteLine ("See `mdoc help' for more information.");
			}
		}
Example #2
0
		private static void Main (string[] args)
		{
			MDoc d = new MDoc ();
			try {
				d.Run (args);
			}
			catch (Exception e) {
				if (debug) {
					Console.Error.WriteLine ("mdoc: {0}", e.ToString ());
				}
				else {
					Console.Error.WriteLine ("mdoc: {0}", e.Message);
				}
				Console.Error.WriteLine ("See `mdoc help' for more information or use --debug to diagnose.");
				Environment.ExitCode = 1;
			}
		}
Example #3
0
        private static void Main(string[] args)
        {
            MDoc d = new MDoc();

            try {
                d.Run(args);
            }
            catch (Exception e) {
                if (debug)
                {
                    Console.Error.WriteLine("mdoc: {0}", e.ToString());
                }
                else
                {
                    Console.Error.WriteLine("mdoc: {0}", e.Message);
                }
                Console.Error.WriteLine("See `mdoc help' for more information.");
            }
        }
Example #4
0
        private static void Main(string[] args)
        {
            MDoc d = new MDoc();

            try {
                d.Run(args);
            }
            catch (Exception e) {
                if (debug)
                {
                    Console.Error.WriteLine("mdoc: {0}", e.ToString());
                }
                else
                {
                    Console.Error.WriteLine("mdoc: {0}", e.Message);
                }
                Console.Error.WriteLine("See `mdoc help' for more information or use --debug to diagnose.");
                Environment.ExitCode = 1;
            }
        }
Example #5
0
		public MDocHelpCommand (MDoc instance)
		{
			this.instance = instance;
		}
Example #6
0
 public MDocHelpCommand(MDoc instance)
 {
     this.instance = instance;
 }