Combines two paths.

Namespace: EnterpriseDT.Util
Assembly: edtFTPnet (in edtFTPnet.dll) Version: 2.2.3.0

Syntax

C#
public static string Combine(
	char separator,
	string pathLeft,
	string pathRight
)
Visual Basic
Public Shared Function Combine ( _
	separator As Char, _
	pathLeft As String, _
	pathRight As String _
) As String
Visual C++
public:
static String^ Combine(
	wchar_t separator, 
	String^ pathLeft, 
	String^ pathRight
)

Parameters

separator
Type: System..::..Char
pathLeft
Type: System..::..String
Left part of path.
pathRight
Type: System..::..String
Right part of path.

Return Value

Combined path.

See Also