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 CS0524

'type' : interfaces cannot declare types

An interface cannot contain a user-defined type.

The following sample generates CS0524:

namespace x
{
   public interface clx
   {
      public class cly   // CS0524, delete user-defined type
      {
      }
   }
}