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

C# winfrom 读取txt文本内容

时间:2019-06-09 22:20:29      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:文件内容   col   reader   from   ram   stream   adt   winfrom   div   

第一种:

 

        /// <summary>
        /// 读取txt文件内容
        /// </summary>
        /// <param name="Path">文件地址</param>
        public void ReadTxtContent(string Path)
        {
            StreamReader sr = new StreamReader(Path, Encoding.Default);
            string content;
            while ((content = sr.ReadLine()) != null)
            {
                Console.WriteLine(content.ToString());
            }
        }

 

C# winfrom 读取txt文本内容

标签:文件内容   col   reader   from   ram   stream   adt   winfrom   div   

原文地址:https://www.cnblogs.com/yinmu/p/10994947.html

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