奇怪的形式错误

发布于 2024-12-04 03:19:25 字数 316 浏览 1 评论 0原文

我正在 C# 中处理某些内容,当我尝试执行此代码时出现错误

Code:
Form form3 = new Form3();
                    form3.Show;

这是我收到的错误

Error: 
only assignment ,call ,increasement ,decreasement ,and new object expressions 
can be used as a statement

我在编码时通常不会收到此错误 &提前致谢

I'm working on something in c# and I get an error when I try to execute this code

Code:
Form form3 = new Form3();
                    form3.Show;

Heres the error I get

Error: 
only assignment ,call ,increasement ,decreasement ,and new object expressions 
can be used as a statement

I usually dont get this error when I'm coding
& thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

望她远 2024-12-11 03:19:25

只是一个拼写错误,伙计:

Form form3 = new Form();

当你调用构造函数时,你调用了 Form, Form3

=)

编辑:您也没有正确调用 Showclose 函数:

private void button1_Click_1(object sender, EventArgs e) 
{ 
  Form form3 = new Form(); 
  form3.Show(); 
  this.Close(); 
}

Just a typo, man:

Form form3 = new Form();

You called Form, Form3 when you called the constructor.

=)

EDIT: You also weren't calling the Show and close functions properly:

private void button1_Click_1(object sender, EventArgs e) 
{ 
  Form form3 = new Form(); 
  form3.Show(); 
  this.Close(); 
}
拧巴小姐 2024-12-11 03:19:25

form3.Show 看起来像是罪魁祸首。它应该是form3.Show()。如果没有括号,它不会执行该方法。

form3.Show looks like the culprit. It should be form3.Show(). Without the parens it doesn't execute the method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文