奇怪的形式错误
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只是一个拼写错误,伙计:
当你调用构造函数时,你调用了
Form
,Form3
。=)
编辑:您也没有正确调用
Show
和close
函数:Just a typo, man:
You called
Form
,Form3
when you called the constructor.=)
EDIT: You also weren't calling the
Show
andclose
functions properly:form3.Show
看起来像是罪魁祸首。它应该是form3.Show()
。如果没有括号,它不会执行该方法。form3.Show
looks like the culprit. It should beform3.Show()
. Without the parens it doesn't execute the method.