Click or drag to resize
IUserAccessiablestringJoin Method
Concatenates several strings in inArray into one string, joined be inSeperator.

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
string stringJoin(
	string inSeperator,
	string[] inAray
)

Parameters

inSeperator
Type: SystemString
a string to add between each two joined strings from inArray
inAray
Type: SystemString

Return Value

Type: String
string type
Examples
For the string array called str, containing these next strings: "H", "ve ", " nice d", "y" - stringJoin("a", str) will return the string: "Have a nice day".
See Also