标签: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(); } } }
标签:string class ogr app stat logs c# str stream
原文地址:http://www.cnblogs.com/tiandsp/p/7440418.html