Exemple #1
0
 /// <summary>
 /// Returns a full path instance as the combination of this full path with
 /// <paramref name="name"/> appened at the end.
 /// </summary>
 public FullPathName Combine(string name)
 {
     return(new FullPathName(PathHelpers.PathCombine(_path, name)));
 }
 /// <summary>
 /// Returns a new relative path instance by appending <paramref name="name"/> to this instance.
 /// </summary>
 public RelativePathName CreateChild(string name)
 {
     return(new RelativePathName(PathHelpers.PathCombine(this.RelativeName, name), name));
 }