Combines two segments of a file path into one.

Namespace: MonoSoftware.MonoX.FileSystem
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public string CombinePath(
	string path1,
	string path2
)
Visual Basic
Public Function CombinePath ( 
	path1 As String,
	path2 As String
) As String
Visual C++
public:
String^ CombinePath(
	String^ path1, 
	String^ path2
)
F#
member CombinePath : 
        path1 : string * 
        path2 : string -> string 

Parameters

path1
Type: System..::..String
Path 1.
path2
Type: System..::..String
Path 2.

Return Value

Type: String
Full path.

See Also