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 CS0103

The name 'name' does not exist in the class or namespace 'namespace'

An attempt was made to use a name that does not exist in the namespace. For example, attempting to derive a class from an unknown class name produces CS0103.

The following sample generates CS0103:

namespace x
{
   public class clx : abc   // CS0103, what is abc?
   {
      public static void Main() {
      }
   }
}