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 CS0502

The class 'class' is abstract and sealed

A class cannot be both abstract (meant to be a base class) and sealed (cannot be a base class).

The following sample generates CS0502:

namespace x 
{
   abstract sealed public class clx // CS0502
   {
      abstract public void f();
   }
}