Lire en anglais

Partager via


Erreur du compilateur CS1524

Catch ou finally attendu

Un bloc try doit être suivi d’un bloc catch ou d’un bloc finally .

Pour plus d’informations sur les exceptions, consultez Exceptions et gestion des exceptions.

Exemple

L’exemple suivant génère l’erreur CS1524 :

// CS1524.cs  
class x  
{  
    public static void Main()  
    {  
        try  
        {  
            // Code here  
        }  
        catch  
        {  
        }  
        try  
        {  
            // Code here  
        }  
        finally  
        {  
        }  
        try  
        {  
            // Code here  
        }  
    }     // CS1524, missing catch or finally  
}