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 CS0132

'constructor' : a static constructor must be parameterless

A static constructor cannot be declared with one or more parameters.

The following sample generates CS0132:

namespace x
{
   public class clx 
   {
      public clx(int i){}
   }

   public class cly : clx
   {
      static cly(int i)   // CS0132
      {
      }
   }
}

See Also

static