Smashes 2 strings together and returns the result

Namespace:  HS.Sys.TheEnterprise.Common.Laserbear
Assembly:  Laserbear (in Laserbear.dll) Version: 1.1.0.0 (1.1.0.0)

Syntax

C#
public static string Concat(
	string string1,
	string string2,
	string separator
)
Visual Basic (Declaration)
Public Shared Function Concat ( _
	string1 As String, _
	string2 As String, _
	separator As String _
) As String
Visual C++
public:
static String^ Concat(
	String^ string1, 
	String^ string2, 
	String^ separator
)

Parameters

string1
Type: System..::.String
The first String
string2
Type: System..::.String
The second String
separator
Type: System..::.String
String to stick in between the 2 strings

Return Value

The concatinated string or NULL if both are empty

See Also