NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

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:

namespace x {
   abstract public class clx    {
      char b = '';   // CS1011
   }
}