public static void Main(String[] args)
    {
        bool          bResult = false;
        Co1704Enqueue oCbTest = new Co1704Enqueue();

        try
        {
            bResult = oCbTest.runTest();
        }
        catch (System.Exception ex)
        {
            Console.Error.Write(strTest);
            Console.Error.WriteLine(": Main() Uncaught exception");
            Console.Error.WriteLine(ex.ToString());
        }
        if (bResult == true)
        {
            Environment.ExitCode = 0;
        }
        else
        {
            Environment.ExitCode = 1;
        }
    }
 public static void Main( String[] args )
 {
     bool bResult = false;	
     Co1704Enqueue oCbTest = new Co1704Enqueue();
     try
     {
         bResult = oCbTest.runTest();
     }
     catch( System.Exception ex )
     {
         Console.Error.Write( strTest );
         Console.Error.WriteLine(  ": Main() Uncaught exception" );
         Console.Error.WriteLine( ex.ToString() );
     }
     if ( bResult == true ) Environment.ExitCode = 0; else Environment.ExitCode = 1;
 }