Ler em inglês

Partilhar via


Aviso do compilador (nível 2) CS0164

Este rótulo não foi referenciado

Foi declarado um rótulo, mas nunca utilizado.

O exemplo a seguir gera CS0164:

// CS0164.cs
// compile with: /W:2
public class Program
{
    public static void Main()
    {
        int i = 0;
    l1: // CS0164
        i++;
        // Uncomment the following lines to resolve this warning.
        // if (i < 10)
        //     goto l1;
    }
}