如何使用protobuf-net序列化/反序列化锯齿/嵌套数组?

时间:2013-04-23 16:28:57

标签: c# protobuf-net

在回答For which scenarios is protobuf-net not appropriate? Marc提及时:

  

没有中间类型的锯齿状数组/嵌套列表不行 - 你可以通过在中间引入一个中间类型来填充这个

我希望这表明有一种方法可以在不更改我的底层代码的情况下完成,也许使用代理? 有没有人找到一个很好的方法来序列化/反序列化嵌套/锯齿状数组

2 个答案:

答案 0 :(得分:8)

目前,它需要(如消息所示)对您的模型进行更改。然而,原则上这是图书馆可以完全按照自己的想象完成的事情 - 这只是我尚未编写/测试过的代码。所以这取决于你需要多久......我可以看看它,但我不能保证任何特定的时间表。

答案 1 :(得分:1)

解决方案可能是序列化中间类型,并使用getter / setter将其与其余代码隐藏。 例如:

    List<double[]> _nestedArray ; // The nested array I would like to serialize.

    [ProtoMember(1)] 
    private List<ProtobufArray<double>> _nestedArrayForProtoBuf // Never used elsewhere
    {
        get 
        {
            if (_nestedArray == null)  //  ( _nestedArray == null || _nestedArray.Count == 0 )  if the default constructor instanciate it
                return null;
            return _nestedArray.Select(p => new ProtobufArray<double>(p)).ToList();
        }
        set 
        {
            _nestedArray = value.Select(p => p.MyArray).ToList();
        }
    }



[ProtoContract]
public class ProtobufArray<T>   // The intermediate type
{
    [ProtoMember(1)]
    public T[] MyArray;

    public ProtobufArray()
    { }
    public ProtobufArray(T[] array)
    {
        MyArray = array;
    }
}