示例#1
0
	public static int Main (string [] args)
	{
		RuntimeCop cop;

		try {
			cop = new RuntimeCop (new CopOptions (args));
		} catch (ArgumentException) {
			Console.Error.WriteLine ("Bad arguments, see -help");
			return 1;
		}

		return cop.Run ();
	}
示例#2
0
    public static int Main(string [] args)
    {
        RuntimeCop cop;

        try {
            cop = new RuntimeCop(new CopOptions(args));
        } catch (ArgumentException) {
            Console.Error.WriteLine("Bad arguments, see -help");
            return(1);
        }

        return(cop.Run());
    }