|
|
Here’s a simple way to concatenate items of a List<string>
C#
static void Main(string[] args)
{
List<string> strList = new List<string>()
{
"Jake", "Brian", "Raj", "Finnie", "Carol"
};
string str = string.Join(";", strList.ToArray());
Console.WriteLine(str);
Console.ReadLine();
}
VB.NET
Sub Main(ByVal args() As String)
Dim strList As New List(Of String)() _
From {"Jake", "Brian", "Raj", "Finnie", "Carol"}
Dim str As String = string.Join(";", strList.ToArray())
Console.WriteLine(str)
Console.ReadLine()
End Sub
OUTPUT
'Like' us on our FaceBook page if you find this blog useful. Thanks!
Did you like this post?
|
|
|
||
|
|
|
|
Save on Delicious |
|
|
subscribe via rss |
|
subscribe via e-mail |
|
|
print this post |
|
follow me on twitter |




comments
1 Response to "Concatenate Items of a List<String>"only strList works dude
string str = string.Join(";", strList);
Post a Comment