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

Concatenate seven strings efficiently

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,
	string str6,
	string str7
)
Visual Basic (Declaration)
Public Shared Function Concat ( _
	str1 As String, _
	str2 As String, _
	str3 As String, _
	str4 As String, _
	str5 As String, _
	str6 As String, _
	str7 As String _
) As String
Visual C++
public:
static String^ Concat(
	String^ str1, 
	String^ str2, 
	String^ str3, 
	String^ str4, 
	String^ str5, 
	String^ str6, 
	String^ str7
)

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
str6
Type: System..::.String
The sixth string
str7
Type: System..::.String
The sixth string

Return Value

The concatenated string

See Also