Răsfoiți Sursa

* NetConfig.cs: If Clone method is not public, then it must use
explicit interface method implementation syntax.

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

Lluis Sanchez 22 ani în urmă
părinte
comite
ca409d6c13

+ 5 - 0
mcs/class/System/System.Net/ChangeLog

@@ -1,3 +1,8 @@
+2003-07-14  Lluis Sanchez Gual <[email protected]>
+
+	* NetConfig.cs: If Clone method is not public, then it must use
+	  explicit interface method implementation syntax.
+
 2003-07-14  Jerome Laban <[email protected]>
 
 	* Dns.cs: Reworked indentation.

+ 1 - 1
mcs/class/System/System.Net/NetConfig.cs

@@ -18,7 +18,7 @@ namespace System.Net
 			
 		}
 
-        internal object Clone()
+        object ICloneable.Clone()
 		{
 			return MemberwiseClone();
 		}