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 CS0516

Constructor 'constructor' can not call itself

A program cannot recursively call constructors.

The following sample generates CS0516:

namespace x
{
   public class clx 
   {
      public clx() : this() // CS0516, delete "this()"
      {
      }
      public static void Main()
      {
      }
   }
}