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.
Empty character literal
A char was declared and initialized to a null. The initialization of a char must specify a character.
The following sample generates CS1011:
// CS1011.cs
class Sample
{
public char CharField = ''; // CS1011
}