如何获取循环外的变量?
我有这个:
countReader = command7.ExecuteReader();
while (countReader.Read())
{
string countName = countReader["count(*)"].ToString();
}
如何在 while 循环之外获取字符串 countName?
I have this:
countReader = command7.ExecuteReader();
while (countReader.Read())
{
string countName = countReader["count(*)"].ToString();
}
How to get string countName outside while loop?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(3)
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如果你想访问 while 循环之外的变量,你应该像这样在外面声明它
If you want to access a variable outside the while loop you should declare it outside like this