Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2004-03-23 20:27:09 +0300
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2004-03-23 20:27:09 +0300
commit93973d690f6eca4d7a73f4dd01074ab233c74a08 (patch)
tree86355bebaea2a91717b9571e7fde7646028557a1 /mcs/class/System/System.Collections.Specialized
parentd8d89aaede39c62715da93e876d983d3395fdb30 (diff)
2004-03-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* ListDictionary.cs: mark ListEntry as serializable. Thanks to Jan Jaros. svn path=/trunk/mcs/; revision=24473
Diffstat (limited to 'mcs/class/System/System.Collections.Specialized')
-rwxr-xr-xmcs/class/System/System.Collections.Specialized/ChangeLog5
-rw-r--r--mcs/class/System/System.Collections.Specialized/ListDictionary.cs1
2 files changed, 6 insertions, 0 deletions
diff --git a/mcs/class/System/System.Collections.Specialized/ChangeLog b/mcs/class/System/System.Collections.Specialized/ChangeLog
index 7dca31451a2..e3181bfc686 100755
--- a/mcs/class/System/System.Collections.Specialized/ChangeLog
+++ b/mcs/class/System/System.Collections.Specialized/ChangeLog
@@ -1,3 +1,8 @@
+2004-03-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+ * ListDictionary.cs: mark ListEntry as serializable. Thanks to Jan
+ Jaros.
+
2004-03-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* ProcessStringDictionary.cs: the same as StringDictionary, but
diff --git a/mcs/class/System/System.Collections.Specialized/ListDictionary.cs b/mcs/class/System/System.Collections.Specialized/ListDictionary.cs
index c1c2b3ff125..3b2c003b1da 100644
--- a/mcs/class/System/System.Collections.Specialized/ListDictionary.cs
+++ b/mcs/class/System/System.Collections.Specialized/ListDictionary.cs
@@ -228,6 +228,7 @@ namespace System.Collections.Specialized
}
+ [Serializable]
private class ListEntry
{
public object key = null;