コード例 #1
0
ファイル: co3162remove.cs プロジェクト: SSCLI/sscli_20021101
    public static void Main(String[] args)
    {
        bool         bResult = false;
        Co3162Remove cb0     = new Co3162Remove();

        try
        {
            bResult = cb0.runTest();
        }
        catch (System.Exception exc)
        {
            bResult = false;
            System.Console.Error.WriteLine("Co3162Remove.");
            System.Console.Error.WriteLine(exc.ToString());
        }
        if (bResult == true)
        {
            Environment.ExitCode = 0;
        }
        else
        {
            Environment.ExitCode = 11;
        }
    }
コード例 #2
0
ファイル: co3162remove.cs プロジェクト: ArildF/masters
 public static void Main( String[] args )
   {
   bool bResult = false; 
   Co3162Remove cb0 = new Co3162Remove();
   try
     {
     bResult = cb0.runTest();
     }
   catch ( System.Exception exc )
     {
     bResult = false;
     System.Console.Error.WriteLine( "Co3162Remove."  );
     System.Console.Error.WriteLine( exc.ToString() );
     }
   if ( bResult == true ) Environment.ExitCode = 0; else Environment.ExitCode = 11; 
   }