如何在 Visual C# 中的消息框中显示整数?
我正在尝试使用消息框来调试 Visual C# 程序。当我单击按钮时,我想要弹出一个简单的消息框并显示几个整数变量的值。这就是我所拥有的
System.Windows.Forms.MessageBox.Show(myGame.P2.Money);
但是变量 Money 是一个整数,所以我收到此错误:
Argument '1':无法从 'int' 转换为 'string'
我如何让它工作?
I am trying to use a messagebox to debug a Visual C# program. When I click a button I want a simple messagebox to popup and display the values of several integer variables. This is what I have
System.Windows.Forms.MessageBox.Show(myGame.P2.Money);
However the variable Money is an integer, and so I get this error:
Argument '1': cannot convert from 'int' to 'string'
How do I get this to work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你尝试过吗:
Did you try:
你尝试过吗
?
Have you tried
?