문제

I've created a new class in App_Code

namespace Site {
    public class MyClass {
        public MyClass() {
        }
    }
}

this is my Global.asax.cs

namespace Site {
    public class Global : System.Web.HttpApplication {
        protected void Application_Start(object sender, EventArgs e) {
            *MyClass myClass = new MyClass();*
        }
    }
}

The error is in: MyClass myClass = new MyClass();

The type or namespace name 'MyClass' could not be found (are you missing a using directive or an assembly reference?)

What am I missing here?

도움이 되었습니까?

해결책

Finally found out what went wrong. I've set the Build Action of the cs file to Content instead of Compile

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top