StringsFromListOfString Method

Converts a list of String to a string separated by the indicated character.

Definition

Namespace: Aliquo.Core
Assembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
C#
public static string FromListOfString(
	List<string> source,
	string separator = ","
)

Parameters

source  ListString
Input string.
separator  String  (Optional)
Character used as separator.

Return Value

String
String with the value converted.

See Also