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 CS0128

A local variable named 'variable' is already defined in this scope

The compiler detected declarations of two local variables with the same name.

The following sample generates CS0128:

namespace x 
{
   public class a
   {
      public static void Main()
      {
         char i;
         int i;   // CS0128
      }
   }
}