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

【C#学习笔记】写文件

时间:2017-08-27 16:05:48      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:string   class   ogr   app   stat   logs   c#   str   stream   

using System;
using System.IO;

namespace ConsoleApplication
{
    class Program
    {
        static void Main(string[] args)
        {
            FileStream file = new FileStream("log.txt", FileMode.OpenOrCreate);
            StreamWriter sw = new StreamWriter(file);
            sw.Write("xiaoming");
            sw.Close();

        }      
    }
}

 

【C#学习笔记】写文件

标签:string   class   ogr   app   stat   logs   c#   str   stream   

原文地址:http://www.cnblogs.com/tiandsp/p/7440418.html

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