Is it possible to deserialize only the second element in a collection using protobuf?
[ProtoContract]
public class Lods : List<Lod> { }
For example:
myLods = new Lods
{
new Lod("garbage"),
new Lod("interesting"), // this one I need to deserialize
new Lod("garbage"),
new Lod("garbage"),
}