public static void Main(String[] args)
    {
        int              inLoops0 = -2;
        int              inLoops1 = -2;
        Boolean          bResult  = false;
        StringBuilder    sblMsg   = new StringBuilder(99);
        Co4310Add_Stress cbA      = new Co4310Add_Stress();

        if (inLoops0 < 2)
        {
            inLoops0 = 2;
        }
        if (inLoops1 < 2)
        {
            inLoops1 = 2;
        }
        try
        {
            bResult = cbA.runTest
                      (
                inLoops0
                , inLoops1
                      );
        }
        catch (Exception exc_main)
        {
            bResult = false;
            Console.Error.WriteLine("POINTTOBREAK:  FAiL!  Error Err_999zzz! (Co4310Add_Stress) Uncaught Exception caught in main(), exc_main==" + exc_main);
        }
        if (!bResult)
        {
            Console.Error.WriteLine("Co4310Add_Stress.cs   FAiL!");
        }
        if (bResult == true)
        {
            Environment.ExitCode = 0;
        }
        else
        {
            Environment.ExitCode = 1;
        }
    }
 public static void Main( String[] args )
 {
     int inLoops0 = -2;
     int inLoops1 = -2;
     Boolean bResult = false; 
     StringBuilder sblMsg = new StringBuilder( 99 );
     Co4310Add_Stress cbA = new Co4310Add_Stress();
     if ( inLoops0 < 2 )
         inLoops0 = 2;
     if ( inLoops1 < 2 )
         inLoops1 = 2;
     try
     {
         bResult = cbA.runTest
             (
             inLoops0
             ,inLoops1
             );
     }
     catch ( Exception exc_main )
     {
         bResult = false;
         Console.Error.WriteLine(  "POINTTOBREAK:  FAiL!  Error Err_999zzz! (Co4310Add_Stress) Uncaught Exception caught in main(), exc_main==" + exc_main  );
     }
     if ( ! bResult )
         Console.Error.WriteLine(  "Co4310Add_Stress.cs   FAiL!"  );
     if ( bResult == true ) Environment.ExitCode = 0; else Environment.ExitCode = 1; 
 }