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 CS0101

The namespace 'namespace' already contains a definition for 'type'

A namespace has duplicate identifiers. Rename or delete one of the duplicate identifiers.

The following sample generates CS0101:

namespace x
{
   public class clx
   {
      static public void Main(){}
   }
   public class clx   // CS0101
   {
   }
}