2008-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
[mono.git] / mcs / class / System / System.Net / CookieCollection.cs
index 6585ab51b6a9545108eee0e483bbda370f7d4da4..a7528bdf8df03facdcc4f908a0b07782ecea5f3b 100644 (file)
@@ -76,6 +76,13 @@ namespace System.Net
                        list.CopyTo (array, arrayIndex);
                }
 
+#if NET_2_0
+               public void CopyTo (Cookie [] array, int index)
+               {
+                       list.CopyTo (array, index);
+               }
+#endif
+
                // IEnumerable
                public IEnumerator GetEnumerator ()
                {