如果DirectoryInfo没有实现IEnumerable,那么foreach是如何工作的呢?
DirectoryInfo[] dirListing = new DirectoryInfo(@"F:\eBook").GetDirectorIEs();foreach (DirectoryInfo dir in dirListing){ Console.Writeline(dir.name);}
请告诉我…….
解决方法 您正在使用数组.所有数组都派生自实现IEnumerable的Array
抽象类.
从MSDN上的Arrays (C# Programming Guide)开始:
总结Array types are reference types derived from the abstract base type
Array
. Since this type implementsIEnumerable
andIEnumerable<T>
,you can use foreach iteration on all arrays in C#.
以上是内存溢出为你收集整理的c# – DirectoryInfo枚举全部内容,希望文章能够帮你解决c# – DirectoryInfo枚举所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)