Freigeben über


Compilerfehler CS0156

Eine throw-Anweisung ohne Argumente ist außerhalb einer catch-Klausel unzulässig.

Eine throw -Anweisung ohne Parameter kann nur in einer catch -Klausel vorkommen, die keine Parameter annimmt.

Weitere Informationen finden Sie unter Ausnahmen und Ausnahmebehandlung.

Im folgenden Beispiel wird CS0156 generiert:

// CS0156.cs  
using System;  
  
namespace MyNamespace  
{  
   public class MyClass2 : Exception  
   {  
   }  
  
   public class MyClass  
   {  
      public static void Main()  
      {  
         try  
         {  
            throw;   // CS0156  
         }  
  
         catch(MyClass2)  
         {  
            throw;   // this throw is valid  
         }  
      }  
   }  
}