Lezen in het Engels

Delen via


Compilerfout CS0724

Een throw-instructie zonder argumenten is niet toegestaan in een laatste component die is genest binnen de dichtstbijzijnde insluiting catch-component

Opmerking

In het volgende voorbeeld wordt CS0724 gegenereerd vanwege de throw instructie in het finally componentblok:

// CS0724.cs  
using System;  
  
class Program
{
    static void Test()
    {
        try
        {
            throw new Exception();
        }
        catch
        {
            try
            {
            }
            finally
            {
                throw; // CS0724
            }
        }
    }

    static void Main()
    {
    }
}