Ler em inglês

Partilhar via


Erro do compilador CS0724

Uma instrução throw sem argumentos não é permitida em uma cláusula finally aninhada dentro da cláusula catch anexa mais próxima

Exemplo

O exemplo a seguir gera CS0724 devido à throw instrução dentro do finally bloco de cláusula:

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

    static void Main()
    {
    }
}