Run() private méthode

private Run ( string args ) : void
args string
Résultat void
Exemple #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.");
			}
		}
Exemple #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;
			}
		}
Exemple #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.");
            }
        }
Exemple #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;
            }
        }