0

我的代码中有错误,无法弄清楚如何修复它。你们能帮帮我吗?

这是代码:

private void typelistbox_SelectedIndexChanged(object sender, EventArgs e)
    {
        Controller controller = GetCurrentController();
        if (controller == null)
        {
            // TODO velden leegmaken
        }
        else
        {
            Controller item = new Controller();

            textBox1.Text = controller.Lastfile;
            _comPortComboBox.SelectedItem = controller.Port;
            Baudratebox.Items.Add(item.Baudrate);
        }

    }

这就是错误

错误 1“Flashloader.Controller”不包含采用 0 个参数的构造函数

4

1 回答 1

4

我认为您没有定义标准构造函数,或者只定义了一个接受任何类型参数的构造函数。

于 2013-06-17T06:42:37.517 回答