我正在尝试创建一个软件,该软件需要包含用户信息的配置文件。用户可以创建许多配置文件(使用不同的名称)来加载不同的信息。因此,为此,我正在使用JSON文件存储这些信息。
目前,我要处理(保存)信息,因为我需要控制JSON文件的格式,因此看起来像这样
{
"profile_name" : {
"information1": "thefirstinfo",
"information2": "thesecondinfo",
"information3": "thethirdinfo"
}
}
“ profile_name”必须替换为用户个人资料的名称,并且必须重复多少次才能获得个人资料。
我找到了一些有关控制格式的信息,所以我终于做到了:
public class Rootobject
{
public Profile_Name profile_name { get; set; }
}
public class Profile_Name
{
public string information1 { get; set; }
public string information2 { get; set; }
public string information3 { get; set; }
}
所以我想像以前一样获得格式,但是我现在不知道该怎么做...