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 CS0501

'member function' must declare a body because it is not marked abstract or extern

Nonabstract methods must have implementations. For example, the following sample generates CS0501:

namespace x 
{
   public class clx 
   {
      public void f();   // CS0501, needs implementation
   }
}