📅  最后修改于: 2020-10-31 04:10:19             🧑  作者: Mango
C#StreamWriter类用于以特定编码将字符写入流。它继承了TextWriter类。它提供了重载的write()和writeln()方法来将数据写入文件。
让我们看一个简单的StreamWriter类示例,该类将单行数据写入文件。
using System;
using System.IO;
public class StreamWriterExample
{
public static void Main(string[] args)
{
FileStream f = new FileStream("e:\\output.txt", FileMode.Create);
StreamWriter s = new StreamWriter(f);
s.WriteLine("hello c#");
s.Close();
f.Close();
Console.WriteLine("File created successfully...");
}
}
输出:
File created successfully...
现在打开文件,您将在output.txt文件中看到文本“ hello c#”。
output.txt:
hello c#