Anteckning
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Keyword 'void' cannot be used in this context
The compiler detected an invalid use of the void keyword.
The following sample generates CS1547:
// CS1547.cs
public class MyClass
{
void BadMethod()
{
void i; // CS1547, cannot have variables of type void
}
public static void Main()
{
}
}