问题描述
textBoxFailed.Text=(int.Parse(textBoxFailed.Text)+1).ToString();debug老是抱错,请问如何优化一下上面的代码
解决方案
解决方案二:
textBoxFailed.Text=Convert.ToString(int.Parse(textBoxFailed.Text)+1);
解决方案三:
首先判断textBoxFailed.Text是不是int
解决方案四:
加trycatch。顺便问一下楼上怎么判断字符串是不是int?
时间: 2024-09-29 15:17:25