c#将数组存储到txt文本中
时间: 2024-10-12 16:07:29 浏览: 41
在C#中,你可以使用`StreamWriter`类将数组内容写入文本文件(txt格式)。这里是一个简单的步骤示例:
```csharp
using System;
using System.IO;
class Program
{
static void Main()
{
// 假设我们有一个整数数组
int[] numbers = { 1, 2, 3, 4, 5 };
try
{
// 创建或打开txt文件(如果不存在则创建)
using (StreamWriter writer = new StreamWriter("numbers.txt"))
{
// 遍历数组并将每个元素转换为字符串写入文件
foreach (int num in numbers)
{
writer.WriteLine(num);
}
}
Console.WriteLine("Array elements have been written to the file.");
}
catch (Exception ex)
{
Console.WriteLine($"Error occurred: {ex.Message}");
}
}
}
```
当你运行这个程序,它会在当前目录下创建一个名为"numbers.txt"的文件,并将数组中的数字按行写入其中。
阅读全文