Compiler Warning (level 2) CS0162
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:
{
}
}
}
How to Disable Unreachable Code Warning Messages
Add the line:
#pragma warning disable 0162
to the top of the class module, eg just below the using System bit etc.
see: http://msdn.microsoft.com/en-us/library/441722ys(VS.80).aspx
- 9/10/2009
- willyhoops
- 9/10/2009
- willyhoops