This topic has not yet been rated - Rate this topic

Compiler Error CS1011

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
}
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ