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 CS0576

Namespace '' already contains an alias definition for 'System'

An attempt was made to use the System namespace twice.

The following sample generates CS0576:

using System.Collections;
using System = System.Collections;   //CS0576, delete this line

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