Lezen in het Engels

Delen via


Compilerwaarschuwing (niveau 2) CS0164

Er is niet naar dit label verwezen

Een label is gedeclareerd maar nooit gebruikt.

In het volgende voorbeeld wordt CS0164 gegenereerd:

C#
// 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;
    }
}