コード例 #1
0
 internal CalculatedAbsolutePathTranslation(AbsolutePath absolutePath, AbsolutePath ancestorSource, AbsolutePath ancestorDestination,
                                            IIoService ioService)
 {
     AbsoluteAbsolutePath = absolutePath;
     AncestorSource       = ancestorSource;
     AncestorDestination  = ancestorDestination;
     IoService            = ioService;
     _actualValues        = Calculate();
 }
コード例 #2
0
 private bool Equals(AbsolutePathTranslation other)
 {
     return(Equals(Source, other.Source) && Equals(Destination, other.Destination));
 }