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 }