Merge pull request #364 from directhex/master
[mono.git] / mcs / class / System.Configuration / System.Configuration / NameValueConfigurationCollection.cs
index bfabab92a2066b815f932c766b51ffe127fe0417..74158384529b254a553171d01d1964071b6e7a87 100644 (file)
@@ -41,6 +41,13 @@ namespace System.Configuration {
                                           CollectionType = ConfigurationElementCollectionType.AddRemoveClearMap)]
        public sealed class NameValueConfigurationCollection : ConfigurationElementCollection
        {
+               static ConfigurationPropertyCollection properties;
+
+               static NameValueConfigurationCollection ()
+               {
+                       properties = new ConfigurationPropertyCollection ();
+               }
+
                public NameValueConfigurationCollection ()
                {
                }
@@ -62,7 +69,7 @@ namespace System.Configuration {
 
                protected internal override ConfigurationPropertyCollection Properties {
                        get {
-                               throw new NotImplementedException ();
+                               return properties;
                        }
                }