.NET 2.x Почему BinaryFormatter не сериализует мой класс? - C#

Узнай цену своей работы

Формулировка задачи:

Здравствуйте. Проблема в том, что BinaryFormatter не сериализует этот класс (необходим мне для Unity, так как там проблема с дессереализацией KeyValuePair):
Листинг программы
  1. [Serializable]
  2. public class SerializableDictionary<TKey, TVal>
  3. {
  4. [Serializable]
  5. private class _KeyValuePair<TKey, TVal>
  6. {
  7. public TKey Key;
  8. public TVal Value;
  9. }
  10. private _KeyValuePair<TKey, TVal>[] serializationData
  11. {
  12. get
  13. {
  14. int count = dictionary.Count;
  15. _KeyValuePair<TKey, TVal>[] kv = new _KeyValuePair<TKey, TVal>[count];
  16. if(count > 0)
  17. {
  18. IEnumerator<KeyValuePair<TKey, TVal>> ie = dictionary.GetEnumerator();
  19. int i = 0;
  20. while(ie.MoveNext())
  21. {
  22. _KeyValuePair<TKey, TVal> element = new _KeyValuePair<TKey, TVal>();
  23. element.Key = ie.Current.Key;
  24. element.Value = ie.Current.Value;
  25. kv[i] = element;
  26. i++;
  27. }
  28. }
  29. return kv;
  30. }
  31. set
  32. {
  33. if(dictionary == null)
  34. {
  35. dictionary = new Dictionary<TKey, TVal>();
  36. }
  37. _KeyValuePair<TKey, TVal>[] kv = value;
  38. if(kv.Length > 0)
  39. {
  40. for(int i = 0; i < kv.Length; i++)
  41. {
  42. dictionary.Add(kv[i].Key, kv[i].Value);
  43. }
  44. }
  45. }
  46. }
  47. [NonSerialized]
  48. public Dictionary<TKey, TVal> dictionary;
  49. public SerializableDictionary()
  50. {
  51. dictionary = new Dictionary<TKey, TVal>();
  52. }
  53. public TVal this[TKey key]
  54. {
  55. get
  56. {
  57. return dictionary[key];
  58. }
  59. set
  60. {
  61. dictionary[key] = value;
  62. }
  63. }
  64. public bool ContainsKey(TKey key)
  65. {
  66. return dictionary.ContainsKey(key);
  67. }
  68. public void Add(TKey key, TVal value)
  69. {
  70. dictionary.Add(key, value);
  71. }
  72. public bool TryGetValue(TKey key, out TVal value)
  73. {
  74. return dictionary.TryGetValue(key, out value);
  75. }
  76. public void Remove(TKey key)
  77. {
  78. dictionary.Remove(key);
  79. }
  80. }
При серриализации даже не обращается к serializationData. .NET 2.0.

Решение задачи: «.NET 2.x Почему BinaryFormatter не сериализует мой класс?»

textual
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Runtime.Serialization;
  4. using System.Text;
  5.  
  6. namespace BuildingLibrary
  7. {
  8.     [Serializable()]
  9.     public class SerializableDictionary<TKey, TVal> : ISerializable
  10.     {
  11.         [Serializable]
  12.         protected class _KeyValuePair<TKey, TVal>
  13.         {
  14.             public TKey Key;
  15.             public TVal Value;
  16.  
  17.             public _KeyValuePair()
  18.             { }
  19.         }
  20.         protected _KeyValuePair<TKey, TVal>[] serializationData
  21.         {
  22.             get
  23.             {
  24.                 int count = dictionary.Count;
  25.                 _KeyValuePair<TKey, TVal>[] kv = new _KeyValuePair<TKey, TVal>[count];
  26.                 if(count > 0)
  27.                 {
  28.                     IEnumerator<KeyValuePair<TKey, TVal>> ie = dictionary.GetEnumerator();
  29.                     int i = 0;
  30.                     while(ie.MoveNext())
  31.                     {
  32.                         _KeyValuePair<TKey, TVal> element = new _KeyValuePair<TKey, TVal>();
  33.                         element.Key = ie.Current.Key;
  34.                         element.Value = ie.Current.Value;
  35.                         kv[i] = element;
  36.                         i++;
  37.                     }
  38.                 }
  39.                 return kv;
  40.             }
  41.             set
  42.             {
  43.                 if(dictionary == null)
  44.                 {
  45.                     dictionary = new Dictionary<TKey, TVal>();
  46.                 }
  47.                 _KeyValuePair<TKey, TVal>[] kv = value;
  48.                 if(kv.Length > 0)
  49.                 {
  50.                     for(int i = 0; i < kv.Length; i++)
  51.                     {
  52.                         dictionary.Add(kv[i].Key, kv[i].Value);
  53.                     }
  54.                 }
  55.             }
  56.         }
  57.  
  58.         [NonSerialized]
  59.         public Dictionary<TKey, TVal> dictionary;
  60.  
  61.         public SerializableDictionary()
  62.         {
  63.             dictionary = new Dictionary<TKey, TVal>();
  64.         }
  65.  
  66.         protected SerializableDictionary(SerializationInfo info, StreamingContext context)
  67.         {
  68.             serializationData = (_KeyValuePair<TKey, TVal>[])info.GetValue("serializationData", typeof(_KeyValuePair<TKey, TVal>[]));
  69.         }
  70.  
  71.         public TVal this[TKey key]
  72.         {
  73.             get
  74.             {
  75.                 return dictionary[key];
  76.             }
  77.             set
  78.             {
  79.                 dictionary[key] = value;
  80.             }
  81.         }
  82.  
  83.         public bool ContainsKey(TKey key)
  84.         {
  85.             return dictionary.ContainsKey(key);
  86.         }
  87.  
  88.         public void Add(TKey key, TVal value)
  89.         {
  90.             dictionary.Add(key, value);
  91.         }
  92.  
  93.         public bool TryGetValue(TKey key, out TVal value)
  94.         {
  95.             return dictionary.TryGetValue(key, out value);
  96.         }
  97.  
  98.         public void Remove(TKey key)
  99.         {
  100.             dictionary.Remove(key);
  101.         }
  102.  
  103.         public void GetObjectData(SerializationInfo info, StreamingContext context)
  104.         {
  105.             info.AddValue("serializationData", serializationData, typeof(_KeyValuePair<TKey, TVal>[]));
  106.         }
  107.     }
  108. }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

11   голосов , оценка 4.091 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы