问题描述
usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.Data.SqlClient;namespace用户管理信息{publicpartialclassAddUser:System.Windows.Forms.Form{privateSystem.Windows.Forms.ButtonAddUserbutt;privateSystem.Windows.Forms.ButtonExitAddUser;privatestringstrSQL="";privateSqlConnectiontempConnection=newSqlConnection("userid=hxh;password=20080712;initialcatalog=hxh;server=XINAN0107\SQLEXPRESS");privateSqlCommandSqComm;privatestringNewUserComd;这是Form1.cs代码,后面省略了
usingSystem;usingSystem.Collections.Generic;usingSystem.Windows.Forms;namespaceAddUser{staticclassProgram{///<summary>///应用程序的主入口点。///</summary>[STAThread]staticvoidMain(){Application.EnableVisualStyles();Application.SetCompatibleTextRenderingDefault(false);Application.Run(newAddUser());}}}这是Program.cs代码,最后一句AddUser出错,怎么改?
解决方案
解决方案二:
namespace:new用户管理信息.AddUser()
解决方案三:
Program与AddUser分属于两个不同的命名空间。而在Program类中,Adduser是命名空间名,所以会提示这个。如果Program的命名空间不是Adduser的话,就应该报找不到类型的错误了。