更新:2007 年 11 月
错误消息
这个标签尚未被引用
声明了标签,但从未使用过。
下面的示例生成 CS0164:
// CS0164.cs
// compile with: /W:2
public class a
{
   public int i = 0;
   public static void Main()
   {
      int i = 0;   // CS0164
      l1: i++;
      // the following lines resolve this error
      // if(i < 10)
      //    goto l1;
   }
}