예제 #1
0
    public static void Main(String[] args)
    {
        bool bResult             = false;
        Co9402WriteLine_bool cbA = new Co9402WriteLine_bool();

        try {
            bResult = cbA.runTest();
        } catch (Exception exc_main) {
            bResult = false;
            Console.WriteLine(" : FAiL! Error Err_9999zzz! Uncaught Exception in main(), exc_main==" + exc_main.ToString());
        }
        if (bResult)
        {
            Environment.ExitCode = 0;
        }
        else
        {
            Environment.ExitCode = 1;
        }
    }
예제 #2
0
	public static void Main(String[] args)
	{
		bool bResult = false;
		Co9402WriteLine_bool cbA = new Co9402WriteLine_bool();
		try {
			bResult = cbA.runTest();
		} catch (Exception exc_main){
			bResult = false;
			Console.WriteLine(" : FAiL! Error Err_9999zzz! Uncaught Exception in main(), exc_main=="+exc_main.ToString());
		}
		if (bResult) Environment.ExitCode = 0; else Environment.ExitCode = 1;
	}