📜  c# Streamwriter 代码示例

📅  最后修改于: 2022-03-11 14:48:58.985000             🧑  作者: Mango

代码示例3
using System.IO;

StreamWriter out = new StreamWriter("file.txt");
out.WriteLine("First line.");
out.WriteLine("Second line.");
out.WriteLine("Third line.");
out.WriteLine("Fourth line.");
out.WriteLine("Fifth line.");
out.Close();

//This will create a txt file in the debug folder.
/*U can set the path by using*/ "c:\path"