我正在尝试在我的项目中创建一个非常简单的CUser类,但显然我做错了。这是代码:
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using MySql.Data.MySqlClient;
namespace admin.NET.lib {
public class CUser {
protected MySqlConnection conn;
public void CUser() {
}
}
}
这段简单的代码告诉我:
'CUser': member names cannot be the same as their enclosing type
任何人都可以给我一个提示,我必须修改它才能工作。我之前看到这个问题出现了问题,但我无法使解决方案适应我的代码。
由于
答案 0 :(得分:10)
删除void
。构造函数没有返回类型。
答案 1 :(得分:0)
错误的构造函数。阅读.net基础信息。
答案 2 :(得分:0)
public CUser() { }
会更好!
你的构造函数返回对它创建的对象的引用,这是他的工作: - )。