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 CS0105

The using directive for 'namespace' appeared previously in this namespace

A namespace, which can only be declared once, was declared more than once; remove all duplicate namespace declarations.

The following sample generates CS0105:

using System;
using System;   // CS0105

public class a {
   public static void Main() {
   }
}