在 VS C# Express 上,运行以下代码时出现此错误:
“myComponent.SettingsComponentAttributes”不包含带有 1 个参数的构造函数。
我尝试在类本身中添加一个构造函数,但同样的消息应用于新的构造函数:
public override void CreateAttributes()
{
m_attributes = new SettingsComponentAttributes(this);
}
public SettingsComponentAttributes(SettingsComponentAttributes obj)
{
}