赞
踩
下面的代码段是关于 C# StreamWriter写入文件的代码。
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace W
{
class Program
{
static void Main(string[] args)
{
using (StreamWriter sw = new StreamWriter (@“c:1.txt”,true,Encoding.UTF8))
{
for (int i = 0; i < 100; i++)
{
sw.WriteLine(i);
}
}
Console.WriteLine(“写入完毕!”);
}
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。