Hi,
is there any method in c# thats equivalent to the javascript join()..
var keyStr = keyList.join("_");
My requirement is to concatenate the array of strings into an single string with the given separator.
And i wanted to convert my whole string array into an single string... in javascript we can do this by calling toString() of the jabvascript array
C# toString of an array just prints the type information. If we use toString on other types like int, it returns the string representation of an int. But why this is been not implemented in String array. wouldnt that strange??
And
Cheers
Ramesh Vel