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 Warning (level 1) CS0621

'member' : virtual or abstract members cannot be private

Private virtual members are not allowed.

The following sample generates CS0621:

class MyClass {
   private virtual void DoNothing() {   // CS0621
   }
   private int Price {
      abstract get;   // CS0621
   }
   public static void Main() {
   }
}