編譯器警告 (層級 2) CS0164
未參考此標籤
已宣告標籤,但從未使用。
下列範例會產生 CS0164:
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;
}
}