瀏覽代碼

2002-07-22 Tim Coleman <[email protected]>
* NameObjectCollectionBase.cs: added iterator stubb to
NameObjectCollectionBase.KeysCollection

svn path=/trunk/mcs/; revision=6057

Tim Coleman 23 年之前
父節點
當前提交
d18f25741c

+ 4 - 0
mcs/class/System/System.Collections.Specialized/ChangeLog

@@ -1,3 +1,7 @@
+2002-07-22  Tim Coleman <[email protected]>
+	* NameObjectCollectionBase.cs: added iterator stubb to 
+		NameObjectCollectionBase.KeysCollection
+
 2002-07-05  Gonzalo Paniagua Javier <[email protected]>
 
 	* HybridDictionary.cs:

+ 6 - 0
mcs/class/System/System.Collections.Specialized/NameObjectCollectionBase.cs

@@ -134,6 +134,12 @@ namespace System.Collections.Specialized
 					//throw new Exception("Not implemented yet");
 				}
 			}
+
+			[MonoTODO]
+			public string this [int index] {
+				get { throw new NotImplementedException (); }
+			}
+
 			// IEnumerable methods --------------------------------
 			/// <summary>
 			/// SDK: Returns an enumerator that can iterate through the NameObjectCollectionBase.KeysCollection.