将值从数组列表保存到 txt C#
本文关键字:txt 保存 列表 数组 | 更新日期: 2023-09-27 18:36:12
如何在 c# 中将 ArrayList 中的所有内容保存到.txt文件,然后在启动 WPF 应用程序时加载它?
static void SaveArray()
{
ArrayList myArray = new ArrayList();
myArray.Add("First");
myArray.Add("Second");
myArray.Add("Third");
myArray.Add("and more");
StreamWriter sw= File.CreateText(@"C:'file.txt");
foreach (string item in myArray)
{
sw.WriteLine(item);
}
sw.Close();
}
并且您不应该使用 arraylist,不是因为它的 2013 年,而是因为 arraylist 对数组中的每个项目进行装箱,其中 List 也存储类型。
这在内存使用方面成本较低。