Hi,
I have this nameofclass.cs class in App_Code:
App_Code/nameofclass.cs
I declare this statement in Global.asax:
nameofclass nameofclass = new nameofclass();
The compiler underlines "nameofclass" and when I hover with the mouse over the text, the tooptip says that nameofclass exists in both those .DLLs
D:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\9f5bba59\_shadow\ebc64839\238152906\30430964\App_Code.eir6kguc.dll
D:\Documents and Settings\ComputerName\My Documents\Visual Studio 2010\Projects\MyProjectName
But it is possible to "Build Solution" successfully to mention
I wonder why "nameofclass" gets underlines. This happens for all classes in the App_Code folder that I have ...
Go to the complete details ...