在VS C#Express中,我得到運行下面的代碼時,這個錯誤(在類中添加一個即使):C#VS錯誤:類不包含構造
'myComponent.SettingsComponentAttributes' does not contain a constructor that takes 1 arguments.
我曾嘗試加入構造函數的類本身,而是應用到新的構造相同的消息:
public override void CreateAttributes()
{
m_attributes = new SettingsComponentAttributes(this);
}
public SettingsComponentAttributes(SettingsComponentAttributes obj)
{
}
您必須創建一個帶有1個參數的構造函數。 – CodeCaster 2012-07-24 09:42:35