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.
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
}
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.