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 CS0527

'type' : type in interface list is not an interface

It is possible for a struct or interface to inherit from another interface but not from any other type.

The following sample generates CS0527:

namespace x
{
   public struct clx : int   // CS0527, int not an interface
   {
      public static void Main()
      {
      }
   }
}