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() { } } }