Strange behaviour of .NET binary serialization on Dictionarylt;Key, Valuegt;(Dictionarylt;Key, Valuegt; 上 .NET 二进制序列化的奇怪行为)
问题描述
我在 .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 二进制序列化的奇怪行为的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Dictionary<Key, Value> 上 .NET 二进制序列化
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 如何用自己压缩一个 IEnumerable 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 输入按键事件处理程序 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01