CS0246: 找不到类型或命名空间名称“DBClass”(是否缺少 using 指令或程序集引用?) 原因

问题描述

ASP.net出现这种错误:CS0246:找不到类型或命名空间名称“DBClass”(是否缺少using指令或程序集引用?)并且没有错误源代码行。求原因

解决方案

解决方案二:
你实例化的某个类是无效的。。必须先引用其命名空间。就好比你用sqlconnection对象就一定要在头部先引用System.Data.sqlClient
解决方案三:
这个DBClass在哪个命名空间下?将其添加进来即可。usingXXX.XXX;或是鼠标左键点击这个DBClass,然后弹出提示,选择命名空间即可。
解决方案四:
DBClass是自定义类,需要引入名称空间才能使用。

时间: 2024-11-03 16:43:11

CS0246: 找不到类型或命名空间名称“DBClass”(是否缺少 using 指令或程序集引用?) 原因的相关文章

CS0246: 找不到类型或命名空间名称“T”(是否缺少 using 指令或程序集引用?)

问题描述 编译器错误信息:CS0246:找不到类型或命名空间名称"T"(是否缺少using指令或程序集引用?)源错误:行46:publicclassBinaryTree行47:{行48:publicintcountLeafNode(Node<T>root)行49:{行50:if(root==null)源文件:c:InetpubwwwrootChapter6App_CodeClass1.cs  plain行:48Program:publicintcountLeafNode(N

找不到类型或命名空间名称“userinfo”(是否缺少 using 指令或程序集引用?)

问题描述 编译器错误消息:CS0246:找不到类型或命名空间名称"userinfo"(是否缺少using指令或程序集引用?)源错误:行41:{行42://获取当前登录用户相关信息行43:userinfousers=newuserinfo();行44://获取用户信息行45:DataTabledt=users.getcurrentloginuserinfo(Page.User.Identity.Name.ToString());急求啊,userinfo是我用户控件的名称 解决方案 解决方

找不到类型或命名空间名称“MyChatRoom”(是否缺少 using 指令或程序集引用?)

问题描述 错误提示如下:找不到类型或命名空间名称"MyChatRoom"(是否缺少using指令或程序集引用?)行8:usingSystem.Web.UI.WebControls.WebParts;行9:usingSystem.Web.UI.HtmlControls;行10:usingMyChatRoom.Database;行11:行12:///<summary>源文件:d:DownloadswebMyChatRoomApp_CodeBussinessLogicLayerM

求助 错误 找不到类型或命名空间名称“Data”(是否缺少 using 指令或程序集引用?),

问题描述 错误找不到类型或命名空间名称"Data"(是否缺少using指令或程序集引用?),这是怎么回事那?命名空间是下面这些usingSystem;usingSystem.Data;usingSystem.Configuration;usingSystem.Collections;usingSystem.Web;usingSystem.Web.Security;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;usingSystem.

找不到类型或命名空间名称“Server”(是否缺少 using 指令或程序集引用?)_自学过程

今天将webserice里面的一个代码,拷到一个C#类,结果运行编译错误.DataBase = Server.MapPath("data.mdb");报错:找不到类型或命名空间名称"Server"(是否缺少 using 指令或程序集引用?) 但是我的确引用了名字空间using System.Web;为什么呢?因为Server的完整路径是System.Web.HttpContext.Current.Server.using System.Web是显然不够的:但是在从内

找不到类型或命名空间名称“GuangGao”(是否缺少 using 指令或程序集引用?)

问题描述 总是提示这个,怎么办啊,朋友说哪个位置报错就右键using引入,可是右键并没有什么using引入啊 解决方案 解决方案二:你这是从其他人那拷过来的项目吧?GuangGao像是私人写的类,你到你的项目里面找一下有没有GuangGao的dll,或者在整个解决方案下查找一下,看看有没有这个类,然后再引用一下.解决方案三:GuangGao--广告删去相关代码就是了解决方案四:缺少命名空间引用了.命名空间引用你要加强下.1.2楼说的都不错的.解决方案五:应该是缺少了一个dll解决方案六:要引用其

错误:找不到类型或命名空间名称“Project”(是否缺少 using 指令或程序集引用?)

问题描述 希望详细说下,谢谢!代码如下:usingSystem;usingSystem.Collections.Generic;usingSystem.Text;namespaceClassLibrary1{publicclassClass1{publicvoidMyMethod(){Projectprj=newProject();prj.NewProject(@"D:TestTest.mpp");prj.AddTask("任务一","2004-08-09

找不到类型或命名空间名称“FileInfo”(是否缺少 using 指令或程序集引用?

问题描述 这是我的代码usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;namespaceplayer2{publicpartialclassForm1:Form{publicForm1(){InitializeC

Error 2 找不到类型错误提示:或命名空间名称“DBClass”(是否缺少 using 指令或程序集引用?)

问题描述 usingSystem;usingSystem.Data;usingSystem.Data.SqlClient;usingSystem.Configuration;usingSystem.Collections;usingSystem.Web;usingSystem.Web.Security;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;usingSystem.Web.UI.WebControls.WebParts;usingSys