svn path=/trunk/mcs/; revision=145672
authorMiguel de Icaza <miguel@gnome.org>
Sun, 8 Nov 2009 18:23:53 +0000 (18:23 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Sun, 8 Nov 2009 18:23:53 +0000 (18:23 -0000)
mcs/class/corlib/System.IO/ChangeLog
mcs/class/corlib/System.IO/FileInfo.cs

index baefd8c20a6d8e2e73fc0ad9d906fc26272d8c15..2514cc195ebad4817e29989825f80d6f918e9abd 100644 (file)
@@ -1,5 +1,7 @@
 2009-11-08  Miguel de Icaza  <miguel@novell.com>
 
+       * FileInfo.cs: Partially implement.
+
        * Stream.cs: Implement synchornized.
 
 2009-11-07  Miguel de Icaza  <miguel@novell.com>
index 68932b4bcbade802ff6ded4a3e9de4a1328d0e4a..7b55ca31d8cbe133d7a7c9a2cefd16b418228f78 100644 (file)
@@ -313,11 +313,12 @@ namespace System.IO {
                }
                
                [ComVisible (false)]
+               [MonoLimitation ("We ignore the ignoreMetadataErrors parameter")]
                public FileInfo Replace (string destinationFileName,
                                         string destinationBackupFileName,
                                         bool ignoreMetadataErrors)
                {
-                       throw new NotImplementedException ();
+                       Replace (destinationFileName, destinationBackupFileName);
                }
 
                public void SetAccessControl (FileSecurity fileSecurity)