Co4239ctor_i.Main C# (CSharp) Méthode

Main() public static méthode

public static Main ( String args ) : void
args String
Résultat void
 public static void Main( String[] args )
   {
   bool bResult = false;	
   Co4239ctor_i oCbTest = new Co4239ctor_i();
   try
     {
     bResult = oCbTest.runTest();
     }
   catch( Exception ex )
     {
     bResult = false;
     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;
   }
}