Partager via


Erreur du compilateur CS1524

Mise à jour : novembre 2007

Message d'erreur

Catch ou finally attendu
Expected catch or finally

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

Pour plus d'informations sur les exceptions, consultez Instructions de gestion des exceptions (Référence C#).

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
}