Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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()
{
}
}