可以使用protobuf-net反序列化单个列表项吗?

时间:2016-05-12 09:08:57

标签: c# deserialization protobuf-net

我有一个列表列表:

[ProtoContract]
public class MyClass
{
    [ProtoMember(1)]
    public List<HugeSizeItem> Items;

    /* ... */

    [ProtoMember(999)]
    public SomeType Property999
}

我需要反序列化特定的列表项,因为如果我反序列化所有数据,则需要很长时间。

0 个答案:

没有答案