码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2014-11-07 18:24:25      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:blog   ar   使用   for   文件   div   on   log   ad   

//封装的方法
//读取文件的值,放入集合中
        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方法-使用迭代器循环遍历文件中的额行

标签:blog   ar   使用   for   文件   div   on   log   ad   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!