Class not being found online but works locally -- CS0246: The type or namespace name 'Class' could n
Posted
by Andrew G. Johnson
on Stack Overflow
See other posts from Stack Overflow
or by Andrew G. Johnson
Published on 2010-03-26T16:48:11Z
Indexed on
2010/03/26
17:03 UTC
Read the original article
Hit count: 484
I am getting this error after uploading my web app to my Rackspace box.
CS0246: The type or namespace name 'User' could not be found (are you missing a using directive or an assembly reference?)
It's odd because it works fine on my local computer where I do development. The actual line of code is:
public User user = new User();
I am using C#.
© Stack Overflow or respective owner