Compiler Warning (level 2) CS0164
This label has not been referenced
A label was declared but never used.
The following sample generates 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;
}
}
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
.NET feedback
.NET is an open source project. Select a link to provide feedback: