To create a delimited string out of a string array, use the String.Join()
string[] strArr = new string[3] { "str1", "str2", "str3"};
string str1 = string.Join(";", strArr);
C# source code, articles and tutorials for C# and .NET developers, plus a You can post your code or articles..
To create a delimited string out of a string array, use the String.Join()
string[] strArr = new string[3] { "str1", "str2", "str3"};
string str1 = string.Join(";", strArr);
0 comments:
Post a Comment