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 Warning (level 3) CS0219

The variable 'variable' is assigned but never used

The compiler warns, at level three, when you declare and assign a variable, but do not use it.

The following sample generates CS0219:

public class MyClass {
   public static void Main() {
      int a = 0;   // CS0219
   }
}