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 CS0144

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
   }
}