I'm trying to serialize and deserialize a ReadOnlyCollection using protobuf-net. However an exception is thrown upon deserialization when protobuf-net attempts to cast a List into a ReadOnlyCollection.

        var roc = new ReadOnlyCollection<byte>(new byte[] {1, 2, 3});
        var ms = new MemoryStream();

        Serializer.Serialize(ms, roc);
        ms.Position = 0;
        var roc2 = Serializer.Deserialize<ReadOnlyCollection<byte>>(ms);

        Console.WriteLine( BitConverter.ToString( roc2.ToArray() ) );

Is there a way to keep this as a ReadOnlyCollection rather than serializing/deserializing as List? In the actual application, the ReadOnlyCollection is a part of an immutable object which I want to serialize, and would prefer to keep it as a ReadOnlyCollection.

Thanks, Mark

link|improve this question

67% accept rate
Ooh, that's intriguing. right now I would have to say simply "no that won't work", but I can think of a few ways I could tweak it to make it work. It would be changes to the deserialization core, though. You might want to log this as a feature request on protobuf-net. – Marc Gravell Nov 24 '11 at 0:03
I've added an issue for this and a possible fix but I forgot to change the issue type so it's listed as a defect. Doh! – Mark Nov 24 '11 at 18:45
I saw. Thanks. I will get to it, but please keep in mind that protobuf-net isn't my day job - so it might take a couple of days to get a proper look at it. – Marc Gravell Nov 24 '11 at 18:51
Thanks Marc, I've done a hack around in my code so no rush, although I think it would be cool. :) – Mark Nov 24 '11 at 19:03
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.