如何在 c# 中保存从 ArrayList 到 .txt 文件的所有内容,然后在启动 WPF 应用程序时加载它?
问问题
552 次
1 回答
0
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 也存储类型。
这在内存使用方面的成本更低。
于 2013-10-20T19:16:51.513 回答