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() { } }