使消息框显示变量
本文关键字:变量 显示 消息 | 更新日期: 2023-09-27 18:31:53
我想要一个MessageBox
来显示一个int
变量,有人可以帮忙吗?
你想使用 MessageBox.Show() 方法
int num = 0;
MessageBox.Show(num.ToString());
对消息框使用字符串格式:
int courseId = 0;
DialogResult result = MessageBox.Show(string.Format("Print Course No {0} ?", courseId), "Print Confirmation", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
JB 的答案是正确的,如果您需要更多信息,MSDN 在以下位置提供了完整的文档:http://msdn.microsoft.com/en-US/library/aa984357(v=vs.71).aspx
对于简单的库问题,MSDN 几乎总是有优秀、易于理解的文档。
这真的很容易。不要混淆,写int test = 1;
,然后MessageBox.Show("test:" + 1)
,因为如果test
的值发生变化,那只会打印1
而不是test
的新值2
。
例:
int test = 1;
test = test + 1;
MessageBox.Show(test);
实现这一点非常容易,请参阅以下示例:
int a=1;
MessageBox.Show(a+"");
在这里:整数测试 = 0;messagebox.show(Convert.ToString(test));