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 CS1012

Too many characters in character literal

An attempt was made to initialize a char constant with more than one character.

The following sample generates CS1012:

namespace x {
   public class b : c {
      char a = 'xx';   // CS1012
      public static void Main() {
      }   
   }
}