从列表中写入文本文件<t> c#

时间:2017-03-05 13:22:44

标签: c# list

我正在使用c#,我有一个类型列表列表,其中Family是具有此结构的类:

public class Family
    {
        public Father father;
        public Mother mother;
        public int IdFamily { get; set; }
    }

父亲和母亲也是具有自己属性的课程。

我的列表中有关于这些家庭的数据。我想将列表中的所有数据存储到txt文件中。

如何使用System.IO和StreamWriter执行此操作?

1 个答案:

答案 0 :(得分:1)

如果你选择Json,那么Newtonsoft

就会非常直截了当
string json = JsonConvert.SerializeObject(family, Formatting.Indented);
File.WriteAllText(path, json);