我曾经将控制信息存储在 XML 文件中,如下所示:
<Controls>
<Label Id="heading" Text="This is a heading!" FontStyle="(FontStyleDataHere)" Location="20, 10" />
<Label Id="bodyText" Text="This is Body text." FontStyle="(FontStyleDataHere)" Location="20, 70" />
</Controls>
我一直在寻找我去年拥有的许多页代码的打印版本,这是我留下的唯一备份,现在找不到。
而且由于我不记得我到底是怎么做到的,我总是觉得 XML 非常乏味。所以我想,为什么不试试 JSON。好像轻松了一些...
现在,给定上面的代码,我能够创建一个 Person 类型的类,并序列化对象并将其写入文件(或控制台 - 随便):
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Json;
using System.Text;
using System.Threading.Tasks;
namespace SerializeToJson
{
class Program
{
[DataContract]
internal class Person
{
[DataMember]
internal String Name;
[DataMember]
internal Int32 Age;
}
static void Main(string[] args)
{
Person person = new Person()
{
Name = "Jason rules.",
Age = 19
};
MemoryStream stream = new MemoryStream();
DataContractJsonSerializer serializer = new DataContractJsonSerializer(typeof(Person));
serializer.WriteObject(stream, person);
stream.Position = 0;
StreamReader reader = new StreamReader(stream);
Console.Write("Json form of Person object: ");
Console.WriteLine(reader.ReadToEnd());
Console.ReadKey();
}
}
}
但问题是,我不知道如何将控件序列化为 Json。这是我真正需要的。而且,显然,我需要在稍后的时间点反序列化它们,以便可以在运行时重新创建它们。
可以使用 JSON 来完成,还是建议我仍然使用 XML?