Baca dalam bahasa Inggris

Bagikan melalui


Compiler Warning (level 2) CS0164

Label ini belum memiliki rujukan

Sebuah label dideklarasikan tetapi tidak pernah digunakan.

Contoh berikut menghasilkan 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;
    }
}