Visual C#Expressでは、次のコードで次のエラーが発生します。
'Type' myComponent.SettingsComponent'は、同じパラメータータイプ'を持つ'SolveInstance'というメンバーを既に定義しています。
しかし、私はSolveInstance
そこでしか使用しませんでした。私は何を間違っているのですか?次回はどうすればこれを自分で解決できますか?
namespace myComponent
{
public class SettingsComponent : GH_Component
{
protected override void SolveInstance(IGH_DataAccess DA)
{
}
protected override void RegisterOutputParams(GH_Component.GH_OutputParamManager pManager)
{
}
protected override void SolveInstance(IGH_DataAccess DA)
{
if (m_settings == null)
{
AddRuntimeMessage(warning, "You must declare some valid settings");
return;
}
DA.SetData(0, m_settings);
}
}
}