Namespace 'Views' not found?

  • Thread starter Thread starter slavinger
  • Start date Start date
S

slavinger

Hi everyone,

Got a strange problem here: I'm typing in an example from a textbook
which uses the Views namespace, and being told by Visual C# '05 Express
that no 'Views' namespace exists. I'm doing the following:

using System;
using Views;

Views.Form form;
....
....

Any ideas?

Thanks!
 
Hi everyone,

Got a strange problem here: I'm typing in an example from a textbook
which uses the Views namespace, and being told by Visual C# '05
Express that no 'Views' namespace exists. I'm doing the following:

using System;
using Views;

Views.Form form;
...
...

Any ideas?

Thanks!

All the framework classes use "System" as namespace-root, so
"View" is not a framework namespace.
It probably is some library that is developed/described elsewhere in
that textbook.

Hans Kesting
 
Back
Top