我想把我的列表保存到一个文本文件中,所以我把它转换成一个数组,现在我想把它写下来。
public void Save(Group g)
{
string[] lines = g.elementsList.ConvertAll(p => p.ToString()).ToArray();
BinaryFormatter bf = new BinaryFormatter();
using (Stream file = File.OpenWrite(path))
{
foreach (string line in lines)
{
using (MemoryStream ms = new MemoryStream())
{
bf.Serialize(ms, lines);
byte[] ser = ms.ToArray();
<--------stuck here :(
}
}
}
我如何从这里继续?还是我应该改变整个方法..