Expand Minimize
This topic has not yet been rated - Rate this topic

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:

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

   public static void Main()
   {
   }
}
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.