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 CS0503

The abstract method 'method' cannot be marked virtual

It is redundant to mark a member method as both abstract and virtual because abstract implies virtual.

The following sample generates CS0503:

namespace x 
{
   abstract public class clx 
   {
      abstract virtual public void f();   // CS0503
   }
}