Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.IO/RenamedEventArgs.cs')
-rw-r--r--mcs/class/System/System.IO/RenamedEventArgs.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/mcs/class/System/System.IO/RenamedEventArgs.cs b/mcs/class/System/System.IO/RenamedEventArgs.cs
index 134dca7a4b1..2bfc39ce3b0 100644
--- a/mcs/class/System/System.IO/RenamedEventArgs.cs
+++ b/mcs/class/System/System.IO/RenamedEventArgs.cs
@@ -15,6 +15,7 @@ namespace System.IO {
#region Fields
string oldName;
+ string oldFullPath;
#endregion // Fields
@@ -24,6 +25,7 @@ namespace System.IO {
: base (changeType, directory, name)
{
this.oldName = oldName;
+ oldFullPath = Path.Combine (directory, oldName);
}
#endregion // Constructors
@@ -31,8 +33,7 @@ namespace System.IO {
#region Properties
public string OldFullPath {
- [MonoTODO]
- get { throw new NotImplementedException (); }
+ get { return oldFullPath; }
}
public string OldName {