Class that defines a source and destination file relationship. This can be used by tools (such as Glue) which maintain the source/destination relationship between files.
示例#1
0
 public bool HasTheSameFilesAs(SourceReferencingFile otherReferencingFile)
 {
     return(SourceFile == otherReferencingFile.SourceFile &&
            DestinationFile == otherReferencingFile.DestinationFile);
 }
 public bool HasTheSameFilesAs(SourceReferencingFile otherReferencingFile)
 {
     return SourceFile == otherReferencingFile.SourceFile &&
         DestinationFile == otherReferencingFile.DestinationFile;
 }