我不确定这个问题是错误还是只是这个,在我没有注意到这一点之前。
我创建了一个Document
类并声明了 protobuf-net 限制。
[ProtoContract]
public class Document
{
[ProtoMember(1)]
private Dictionary<string,string> _items;
[ProtoMember(2)]
public int DocNumber
{
get;
set;
}
public Document()
{
this.DocNumber = -1;
this._items = new Dictionary<string,string>();
}
public byte[] Serialize()
{
byte[] bytes = null;
using (var ms = new MemoryStream())
{
Serializer.Serialize(ms, this);
bytes = ms.ToArray();
ms.Close();
}
return bytes;
}
public static Document Deserialize(byte[] bytes)
{
Document obj = null;
using (var ms = new MemoryStream(bytes))
{
obj = Serializer.Deserialize<Document>(ms);
ms.Close();
}
return obj;
}
}
在测试代码中:
var doc = new Document();
doc.DocNumber = 0;
var bytes = doc.Serialize();
var new_doc = Document.Deserialize(bytes);
Console.WriteLine(new_doc.DocNumber + " vs " + doc.DocNumber);
输出消息是:-1 vs 0
.i can't believe this result(正确的结果是0 vs 0
),所以我将其更改 doc.DocNumber = 0
为 doc.DocNumber = 1
,输出是正确的:1 vs 1
.
这个问题意味着我不能将零分配给DocNumber
属性,在 Document 的构造方法中,我必须声明 DocNumber 属性为-1。
有人可以帮助我吗?这个问题是我的原因还是 protobuf-net 的原因?谢谢。