Questions tagged «deserialization»

反序列化是从对象的序列化状态重新创建对象的过程。

8
NewtonSoft.Json具有IEnumerable <ISomeInterface>类型的属性的序列化和反序列化类
我正在尝试移动一些代码以使用ASP.NET MVC Web API生成的Json数据而不是SOAP Xml。 我遇到了序列化和反序列化类型属性的问题: IEnumerable&lt;ISomeInterface&gt;. 这是一个简单的示例: public interface ISample{ int SampleId { get; set; } } public class Sample : ISample{ public int SampleId { get; set; } } public class SampleGroup{ public int GroupId { get; set; } public IEnumerable&lt;ISample&gt; Samples { get; set; } } } …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.