我想MessageBox
显示一个int
变量,有人可以帮忙吗?
问问题
57333 次
6 回答
7
您想使用MessageBox.Show()方法
int num = 0;
MessageBox.Show(num.ToString());
于 2012-04-22T22:39:29.383 回答
2
对消息框使用字符串格式:
int courseId = 0;
DialogResult result = MessageBox.Show(string.Format("Print Course No {0} ?", courseId), "Print Confirmation", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
于 2016-05-15T11:34:28.153 回答
1
jb 的回答是正确的,如果您需要更多信息,MSDN 的完整文档位于:http: //msdn.microsoft.com/en-us/library/aa984357 (v=vs.71).aspx
对于简单的库问题,MSDN 几乎总是有出色的、易于理解的文档。
于 2012-04-22T22:44:28.473 回答
0
这真的很容易。不要混淆并写int test = 1;
, then MessageBox.Show("test:" + 1)
,因为如果test
' 的值发生变化,那只会打印1
而不是test
' 的新值2
。
例子:
int test = 1;
test = test + 1;
MessageBox.Show(test);
于 2012-04-22T22:48:27.723 回答
0
实现这一点很容易,请参见以下示例:
int a=1;
MessageBox.Show(a+"");
于 2015-01-11T15:38:07.717 回答
0
这里:int test = 0; messagebox.show(Convert.ToString(test));
于 2021-06-09T08:59:44.080 回答