NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error CS0164

This label has not been referenced

A label was declared but never used.

The following sample generates CS0164:

namespace x 
{
   public class a
   {
      public int i = 0;
      public static void Main()
      {
         l1: int i = 0;   // CS0164
         i++;
         // the following line resolves this CS0164
         // goto l1;   
      }
   }
}