Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Unreachable code detected
The compiler detected code that will never be executed.
The following sample generates CS0162:
// CS0162.cs
// compile with: /W:2
public class A
{
public static void Main()
{
goto lab1;
{
// The following statements cannot be reached:
int i = 9; // CS0162
i++;
}
lab1:
{
}
}
}