c# – DirectoryInfo枚举

c# – DirectoryInfo枚举,第1张

概述在学习C#基础知识时,我已经了解到foreach适用于那些已实现IEnumerable接口的集合.到目前为止一直很好,但今天当我遇到DirectoryInfo时,我感到很困惑. 如果DirectoryInfo没有实现IEnumerable,那么foreach是如何工作的呢? DirectoryInfo[] dirListing = new DirectoryInfo(@"F:\eBook").Ge 在学习C#基础知识时,我已经了解到foreach适用于那些已实现IEnumerable接口的集合.到目前为止一直很好,但今天当我遇到DirectoryInfo时,我感到很困惑.

如果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 implements IEnumerable and IEnumerable<T>,you can use foreach iteration on all arrays in C#.

总结

以上是内存溢出为你收集整理的c# – DirectoryInfo枚举全部内容,希望文章能够帮你解决c# – DirectoryInfo枚举所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1223584.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存