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 CS1536

Invalid parameter type void

It is not necessary or valid to specify a void parameter other than a void pointer.

The following sample generates CS1536:

class a {
   public static int x( void ) {   // CS1536
   // try the following line instead
   // public static int x() {
      return 0;
   }
   public static void Main() {
   }
}