Esempio n. 1
0
        public override bool Equals(object obj)
        {
            if (obj == null || GetType() != obj.GetType())
            {
                return(false);
            }

            LocalPath that = (LocalPath)obj;

            return(string.Equals(_localPath, that._localPath));
        }
Esempio n. 2
0
 public LocalPath CombineWith(LocalPath path)
 {
     return(new LocalPath(Path.Combine(_localPath, path.ToString())));
 }
Esempio n. 3
0
 public FullPath CombineWith(LocalPath localPath)
 {
     return(new FullPath(Path.Combine(_fullPath, localPath.ToString())));
 }