ProtoBuf-Net 错误消息 - “不支持嵌套或交错列表和数组”
本文关键字:列表 数组 嵌套 消息 错误 不支持 ProtoBuf-Net | 更新日期: 2023-09-27 18:32:43
主要目标是动态填充字典对象并使用 Protobuf-net 对其进行序列化,并通过 WCF 服务将其发送到客户端。
@marc 您能否告诉我一个代码示例,说明当我尝试使用 Protobuf-net 进行序列化时,如何解决错误"不支持嵌套或交错列表和数组"。
[Serializable]
[ProtoContract]
public class DynamicWrapper
{
[ProtoMember(1)]
public List<Dictionary<string, string>> Items { get; set; }
public DynamicWrapper()
{
Items = new List<Dictionary<string, string>>();
}
}
public class Service1 : IService1
{
public byte[] GetData(string sVisibleColumnList)
{
DynamicWrapper dw = new DynamicWrapper();
Dictionary<string, string> d = new Dictionary<string, string>();
d.Add("CUSIP", "123456");
dw.Items.Add(d);
d = new Dictionary<string, string>();
d.Add("ISIN", "456789");
dw.Items.Add(d);
var ms = new MemoryStream();
var model = ProtoBuf.Meta.RuntimeTypeModel.Default;
model.Serialize(ms, dw);
Serializer.Serialize <DynamicWrapper>(ms, dw);
return ms.GetBuffer();
}
}
您可以将字典包装到单独的类中。然后改用这些对象的列表。
[ProtoContract]
public class DynamicWrapper
{
[ProtoMember(1)]
public List<DictWrapper> Items { get; set; }
public DynamicWrapper()
{
Items = new List<DictWrapper>();
}
}
[ProtoContract]
public class DictWrapper
{
[ProtoMember(1)]
public Dictionary<string, string> Dictionary { get; set; }
}