Author: gert
Date: 2007-07-01 05:03:56 -0400 (Sun, 01 Jul 2007)
New Revision: 81137

Modified:
   trunk/mcs/class/System.Data/System.Data/ChangeLog
   trunk/mcs/class/System.Data/System.Data/DataRowCollection.cs
Log:
* DataRowCollection.cs: Only override Count on 2.0 profile.


Modified: trunk/mcs/class/System.Data/System.Data/ChangeLog
===================================================================
--- trunk/mcs/class/System.Data/System.Data/ChangeLog   2007-07-01 08:54:00 UTC 
(rev 81136)
+++ trunk/mcs/class/System.Data/System.Data/ChangeLog   2007-07-01 09:03:56 UTC 
(rev 81137)
@@ -1,5 +1,6 @@
 2007-07-01  Gert Driesen  <[EMAIL PROTECTED]>
 
+       * DataRowCollection.cs: Only override Count on 2.0 profile.
        * RelatedDataView.cs: Fixed line endings.
        * XmlDataInferenceLoader.cs: Fixed line endings.
 

Modified: trunk/mcs/class/System.Data/System.Data/DataRowCollection.cs
===================================================================
--- trunk/mcs/class/System.Data/System.Data/DataRowCollection.cs        
2007-07-01 08:54:00 UTC (rev 81136)
+++ trunk/mcs/class/System.Data/System.Data/DataRowCollection.cs        
2007-07-01 09:03:56 UTC (rev 81137)
@@ -78,18 +78,13 @@
                        }
                }
 
-               public
 #if NET_2_0
-               override
-#else
-               new
-#endif
-               int Count
-               {
+               public override int Count {
                        get {
                                return List.Count;
                        }
                }
+#endif
 
 #if !NET_2_0
                /// <summary>

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to