FileSystemExtensions.Combine method (1 of 3)
Combines an array of path strings.
public static string Combine(this IFileSystem _, params string[] paths)
| parameter | description |
|---|---|
| _ | The file system. |
| paths | The paths to combine. |
Return Value
The combined path.
See Also
- interface IFileSystem
- class FileSystemExtensions
FileSystemExtensions.Combine method (2 of 3)
Combines two path strings.
public static string Combine(this IFileSystem _, string path1, string path2)
| parameter | description |
|---|---|
| _ | The file system. |
| path1 | The first path. |
| path2 | The second path. |
Return Value
The combined path.
See Also
- interface IFileSystem
- class FileSystemExtensions
FileSystemExtensions.Combine method (3 of 3)
Combines three path strings.
public static string Combine(this IFileSystem _, string path1, string path2, string path3)
| parameter | description |
|---|---|
| _ | The file system. |
| path1 | The first path. |
| path2 | The second path. |
| path3 | The third path. |
Return Value
The combined path.
See Also
- interface IFileSystem
- class FileSystemExtensions