1
[Serializable]
[ProtoContract]
public class DataWrapper
{
    [ProtoMember(1)]
    public double[] Data = new double[] { 1, 2, 3, 4 };
}

class Program
{
    static void Main(string[] args)
    {

        Dictionary<int, DataWrapper> serialized = new Dictionary<int, DataWrapper>();
        Dictionary<int, DataWrapper> deserialized;// = new Dictionary<int, OHLC>();
        for (int i = 0; i < 10; i++)
        {
            serialized.Add(i, new DataWrapper());                
        }
        using (FileStream ms = new FileStream("dictionary", FileMode.Create, FileAccess.Write))
        {
            Serializer.Serialize<Dictionary<int, DataWrapper>>(ms, serialized);
        }


        using (FileStream ms = new FileStream("dictionary", FileMode.Open, FileAccess.Read))
        {
            deserialized = Serializer.Deserialize<Dictionary<int, DataWrapper>>(ms);
        }

        Console.WriteLine("serialized {0} and deserialized {1}", serialized[0].Data.Length, deserialized[0].Data.Length);

        }
}

長さ 8 の配列を受け取りましたが、長さ 4 の配列をデシリアライズすることを期待しています。これはバグですか、それとも間違っていますか?

コードは無意味であることに注意してください。これは、実際のシナリオで直面している問題を説明する試みにすぎません

4

1 に答える 1