我正在尝试将很棒的 protobuf-net 集成到现有的代码库中,但是当它尝试处理自定义类型时遇到了崩溃。下面是一个小演示:它将抛出一个InvalidOperationException
. ProtoBuf.Serializers.ListDecorator
但是,如果您注释掉索引器(或删除 IEnumerable 实现),那么它会干净地运行。
using System.Collections.Generic;
using ProtoBuf;
using System.Collections;
[ProtoContract]
public class MyClass : IEnumerable<int>
{
[ProtoMember(1, IsPacked = true)]
public int[] data { get; set; }
// Comment out this indexed property to prevent the crash
public int this[int i] { get { return data[i]; } set { data[i] = value; } }
public IEnumerator<int> GetEnumerator() { foreach (var x in data) yield return x; }
IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); }
static void Main(string[] args) { Serializer.PrepareSerializer<MyClass>(); }
}
难道我做错了什么?如何告诉 protobuf-net Serializer 忽略 Indexer 属性?
谢谢!
编辑(10 月 10 日):Marc 友好地通过.protobuf-net r447[ProtoContract(IgnoreListHandling = true)]
提供了修复。