首页 > Windows开发 > 详细

C# static方法-使用迭代器循环遍历文件中的额行

时间:2014-11-07 18:22:06      阅读:264      评论:0      收藏:0      [点我收藏+]
//封装的方法
//读取文件的值,放入集合中
        public static IEnumerable<string> ReadLines(string fileName) {
            using (TextReader reader=File.OpenText(fileName)) {
                string line;
                while ((line=reader.ReadLine())!=null) {
                    yield return line;
                }
            }
 }
//调用
 class Program {
        static void Main(string[] args) {
            foreach (var item in ReadLines("~/map/123.txt")) {
                Console.WriteLine(item);
            }
            Console.ReadKey();
 }


//x^n
 public static IEnumerable<int> Power(int number, int exp) {
            int result = 1;
            for (int i = 0; i < exp; i++) {
                result = result * number;
                yield return result;
            }
        }
//调用,结果 2,4,8,16,32
 class Program {
        static void Main(string[] args) {
             foreach (var item in Power(2, 5)) {
                Console.WriteLine(item);
            }
            Console.ReadKey();
 }

  

C# static方法-使用迭代器循环遍历文件中的额行

原文:http://www.cnblogs.com/alphafly/p/4081889.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!