C# 判断数字是否为空
怎么判断?intid=int.Parse(GridView1.Rows[e.RowIndex].Cells[0].Text);我就想知道它是不是空的...
怎么判断?
int id = int.Parse(GridView1.Rows[e.RowIndex].Cells[0].Text);
我就想知道它是不是空的 展开
int id = int.Parse(GridView1.Rows[e.RowIndex].Cells[0].Text);
我就想知道它是不是空的 展开
展开全部
就你的代码来说
if (GridView1.Rows[e.RowIndex].Cells[0] == null)
MessageBox.Show("空")
if (GridView1.Rows[e.RowIndex].Cells[0] == null)
MessageBox.Show("空")
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
int id = 0
try{
id = int.Parse(GridView1.Rows[e.RowIndex].Cells[0].Text);
}catch{}
if (id<1){
// GridView1.Rows[e.RowIndex].Cells[0].Text is empty Or GridView1.Rows[e.RowIndex].Cells[0] is null
}
或者
int id = 0;
String str = GridView1.Rows[e.RowIndex].Cells[0].Text;
str=System.Text.RegularExpressions.Regex.Replace(str,@"(\s+)?","");
if (str!=""){
id = int.Parse(str);
}
try{
id = int.Parse(GridView1.Rows[e.RowIndex].Cells[0].Text);
}catch{}
if (id<1){
// GridView1.Rows[e.RowIndex].Cells[0].Text is empty Or GridView1.Rows[e.RowIndex].Cells[0] is null
}
或者
int id = 0;
String str = GridView1.Rows[e.RowIndex].Cells[0].Text;
str=System.Text.RegularExpressions.Regex.Replace(str,@"(\s+)?","");
if (str!=""){
id = int.Parse(str);
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
如果是空的话就会有问题了啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询