This topic has not yet been rated - Rate this topic

Compiler Error CS0139

No enclosing loop out of which to break or continue

A break or continue statement was encountered outside of a loop.

For more information, see Jump Statements.

The following sample generates CS0139 twice:

// CS0139.cs
namespace x
{
   public class a
   {
      public static void Main()
      {
         continue;  // CS0139
         break;     // CS0139
      }
   }
}
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ