예제 #1
0
 public bool Equals(IFilePath other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     return(ReferenceEquals(this, other) || Equals(other.RawPathToFile(), rawFilePath));
 }
예제 #2
0
 public void SaveActiveDocumentTo(IFilePath pathToSaveTheActiveDocumentTo)
 {
     pathToSaveTheActiveDocumentTo
     .LogInformational("Save document to {0}", pathToSaveTheActiveDocumentTo.RawPathToFile());
 }