Encontré un comportamiento extraño, al menos según mis expectativas, en la serialización binaria de .NET.Comportamiento extraño de .NET serialización binaria en el diccionario <Key, Value>
Todos los elementos de un Dictionary
que se cargan se agregan a sus padres DESPUÉS de la devolución de llamada OnDeserialization
. En contraste, List
hace lo contrario. Esto puede ser realmente molesto en el código del repositorio del mundo real, por ejemplo, cuando necesita agregar delegados a los elementos del diccionario. Por favor, compruebe el código de ejemplo y mire las afirmaciones.
¿Es normal el comportamiento?
[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");
}
}
Me resulta difícil seguir las respuestas porque ¡tu instancia de objeto tiene el mismo nombre que la clase! ¿Cómo se puede distinguir entre métodos estáticos y miembros? –