| Author: Babu A 24 Mar 2008 | Member Level: Gold | Rating: Points: 2 |
assume you have array like this string[] strs = {"aa", "bb", ...};
//create temp variable to store concatenated value string Test =""; // use this loop
foreach (string s in strs ) { Test += s; }
now Test will contains, all concatenated values
|