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

C#文件写入操作

时间:2015-06-08 23:29:49      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:

using System;
using System.IO;

namespace IO操作
{
    class Program
    {
        static void Main(string[] args)
        {
            using(StreamWriter w=File.AppendText("IO.txt"))
            {
                TextIn("Hello GeoStorm", w);
                TextIn("Hello World",w);
                w.Close();
            }
        }
        public static void TextIn(string content, TextWriter w)
        {
            w.Write("\r\n message:");
            w.WriteLine("{0}",content);
            w.Flush();
        }
    }
}

C#文件写入操作

标签:

原文地址:http://blog.csdn.net/lucky51222/article/details/46418149

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