C# 使用list生成一个txt文件在桌面
时间: 2024-02-28 11:54:21 浏览: 160
你可以使用以下代码在桌面生成一个名为 "example.txt" 的文本文件,并向其中写入列表中的内容:
```csharp
using System;
using System.IO;
using System.Collections.Generic;
class Program
{
static void Main(string[] args)
{
List<string> myList = new List<string>();
myList.Add("Hello");
myList.Add("World");
myList.Add("!");
string filePath = Environment.GetFolderPath(Environment.SpecialFolder.Desktop) + "\\example.txt";
using (StreamWriter sw = new StreamWriter(filePath))
{
foreach (string s in myList)
{
sw.WriteLine(s);
}
}
}
}
```
以上代码将在桌面生成一个名为 "example.txt" 的文本文件,并写入以下内容:
```
Hello
World
!
```
阅读全文