public static void Main( String[] args )
   {
   bool bResult = false; 
   try
     {
     Co4272ToLower o2Co4272ToLower = new Co4272ToLower();
     bResult = o2Co4272ToLower.runTest();
     }
   catch ( Exception exc )
     {
     bResult = false;
     Console.Error.WriteLine( "Character- Co4272ToLower main caught Exception!" );
     Console.Error.WriteLine( exc.ToString() );
     }
   if ( bResult == true ) Environment.ExitCode = 0; else Environment.ExitCode = 1;  
   }
    public static void Main(String[] args)
    {
        bool bResult = false;

        try
        {
            Co4272ToLower o2Co4272ToLower = new Co4272ToLower();
            bResult = o2Co4272ToLower.runTest();
        }
        catch (Exception exc)
        {
            bResult = false;
            Console.Error.WriteLine("Character- Co4272ToLower main caught Exception!");
            Console.Error.WriteLine(exc.ToString());
        }
        if (bResult == true)
        {
            Environment.ExitCode = 0;
        }
        else
        {
            Environment.ExitCode = 1;
        }
    }