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