[This is preliminary documentation and is subject to change.]

Concatenate five strings in an efficient manner

Namespace:  OfficeClip.Utils
Assembly:  OfficeClip.Utils (in OfficeClip.Utils)
Version: 8.1.1.0

Syntax

C#
public static string Concat(
	string str1,
	string str2,
	string str3,
	string str4,
	string str5
)
Visual Basic (Declaration)
Public Shared Function Concat ( _
	str1 As String, _
	str2 As String, _
	str3 As String, _
	str4 As String, _
	str5 As String _
) As String
Visual C++
public:
static String^ Concat(
	String^ str1, 
	String^ str2, 
	String^ str3, 
	String^ str4, 
	String^ str5
)

Parameters

str1
Type: System..::.String
The first string
str2
Type: System..::.String
The second string
str3
Type: System..::.String
The third string
str4
Type: System..::.String
The fourth string
str5
Type: System..::.String
The fifth string

Return Value

The concatenated string

See Also