我是一个完全初学者的protobuf-net,所以这可能只是一些愚蠢的初学者错误。但我无法找到这个问题:
我有一个类可以序列化到像这样定义的磁盘:
[ProtoContract]
public class SerializableFactors
{
[ProtoMember(1)]
public double?[] CaF {get;set;}
[ProtoMember(2)]
public byte?[] CoF { get; set; }
}
和测试定义如下:
if (File.Exists("factors.bin"))
{
using (FileStream file = File.OpenRead("factors.bin"))
{
_factors = Serializer.Deserialize<SerializableFactors>(file);
}
}
else
{
_factors = new SerializableFactors();
_factors.CaF = new double?[24];
_factors.CaF[8] = 7.5;
_factors.CaF[12] = 1;
_factors.CaF[18] = 1.5;
_factors.CoF = new byte?[24];
_factors.CoF[8] = 15;
_factors.CoF[12] = 45;
_factors.CoF[18] = 25;
using (FileStream file = File.Create("factors.bin"))
{
Serializer.Serialize(file, _factors);
}
}
所以基本上如果文件不存在,我创建一个具有默认值的对象并将其序列化为磁盘。如果文件存在,我会将其加载到内存中。
但是我加载文件的结果不是我在保存到磁盘之前创建的。我创建了长度为24的数组,它们在插槽8,12和18中具有值。但是反序列化对象具有长度为3的数组,其中包含我的值。
我在这里犯了什么错误? 提前谢谢!
答案 0 :(得分:5)
您必须将RuntimeTypeModel设置为支持null
请参阅以下帖子: How can I persist an array of a nullable value in Protobuf-Net?
// configure the model; SupportNull is not currently available
// on the attributes, so need to tweak the model a little
RuntimeTypeModel.Default.Add(typeof(SerializableFactors), true)[1].SupportNull = true;
if (File.Exists("factors.bin"))
{
using (FileStream file = File.OpenRead("factors.bin"))
{
_factors = Serializer.Deserialize<SerializableFactors>(file);
}
}
else
{
_factors = new SerializableFactors();
_factors.CaF = new double?[24];
_factors.CaF[8] = 7.5;
_factors.CaF[12] = 1;
_factors.CaF[18] = 1.5;
_factors.CoF = new byte?[24];
_factors.CoF[8] = 15;
_factors.CoF[12] = 45;
_factors.CoF[18] = 25;
using (FileStream file = File.Create("factors.bin"))
{
Serializer.Serialize(file, _factors);
}
}