问题描述
我在 .NET 的二进制序列化中遇到了一个奇怪的行为,至少在我的预期中.
I encountered a, at least to my expectations, strange behavior in the binary serialization of .NET.
Dictionary 的所有项目在 OnDeserialization 回调之后被添加到它们的父项.相比之下,List 则相反.这在现实世界的存储库代码中可能真的很烦人,例如当您需要向字典项添加一些委托时.请检查示例代码并观察断言.
All items of a Dictionary that are loaded are added to their parent AFTER the OnDeserialization callback. In contrast List does the other way. This can be really annoying in real world repository code, for example when you need to add some delegates to dictionary items. Please check the example code and watch the asserts.
这是正常行为吗?
[Serializable]
public class Data : IDeserializationCallback
{
public List<string> List { get; set; }
public Dictionary<string, string> Dictionary { get; set; }
public Data()
{
Dictionary = new Dictionary<string, string> { { "hello", "hello" }, { "CU", "CU" } };
List = new List<string> { "hello", "CU" };
}
public static Data Load(string filename)
{
using (Stream stream = File.OpenRead(filename))
{
Data result = (Data)new BinaryFormatter().Deserialize(stream);
TestsLengthsOfDataStructures(result);
return result;
}
}
public void Save(string fileName)
{
using (Stream stream = File.Create(fileName))
{
new BinaryFormatter().Serialize(stream, this);
}
}
public void OnDeserialization(object sender)
{
TestsLengthsOfDataStructures(this);
}
private static void TestsLengthsOfDataStructures(Data data)
{
Debug.Assert(data.List.Count == 2, "List");
Debug.Assert(data.Dictionary.Count == 2, "Dictionary");
}
}
推荐答案
我可以重现问题.环顾谷歌,发现:http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=94265 虽然我不确定这是完全相同的问题,但看起来非常相似.
I can reproduce the problem. Had a look around Google and found this: http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=94265 although I'm not sure it's the exact same problem, it seems pretty similar.
我认为添加此代码可能会解决问题?
I think that adding this code may have fixed the problem?
public void OnDeserialization(object sender)
{
this.Dictionary.OnDeserialization(sender);
}
没有时间进行详尽的测试,我想击败 Marc 得到答案 ;-)
No time to exhaustively test, and I want to beat Marc to the answer ;-)
这篇关于Dictionary<Key, Value> 上 .NET 二进制序列化的奇怪行为的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)