本文介绍了为什么要在foreach循环中声明数据类型?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
全部:
为什么我们需要在foreach循环中提及变量的数据类型?
All:
Why do we need to mention datatype of a variable inside foreach loop ?
foreach(string strName in strFilePath)
{
//Operations here
}
为什么我们不能在外面声明它?
Why cannot we declare it outside?
string strName = "";
foreach (strName in strFilePath)
{
//Operations here
}
推荐答案
这篇关于为什么要在foreach循环中声明数据类型?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!