To do this in C# they have to loop through each of the item in the array like 
so:
string result = "";
for (int i = 0; i < data.length; i++)
{
  result += "'" + data[i].tostring() + "',";
}

Does stringbuilder (I can't remember the exact name) be more efficient? or is string in c# now mutable?


----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

Reply via email to