Cannot create an instance of the abstract class or interface 'interface'
You cannot create an instance of an abstract class or interface.
The following sample generates CS0144:
interface ii { } public class a { public static void Main() { ii xx = new ii(); // CS0144 } }