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
)
Visual Basic (Declaration)
Public Shared Function Concat ( _
	string1 As String, _
	string2 As String _
) As String
Visual C++
public:
static String^ Concat(
	String^ string1, 
	String^ string2
)

Parameters

string1
Type: System..::.String
The first String
string2
Type: System..::.String
The second String

Return Value

The concatinated string or NULL if both are empty

See Also