예제 #1
0
파일: FullPath.cs 프로젝트: breki/flubu
 public FullPath CombineWith(LocalPath localPath)
 {
     return(new FullPath(Path.Combine(fullPath, localPath.ToString())));
 }
예제 #2
0
파일: LocalPath.cs 프로젝트: breki/flubu
 public LocalPath CombineWith(LocalPath path)
 {
     return(new LocalPath(Path.Combine(localPath, path.ToString())));
 }