T Tyler Dixon Dec 23, 2003 #2 Bill said: What is the easiest way to convert a char array to string? Click to expand... //honestly, i haven't checked this, but something's seriously wrong if //it doesn't work string s = new string(charArray);
Bill said: What is the easiest way to convert a char array to string? Click to expand... //honestly, i haven't checked this, but something's seriously wrong if //it doesn't work string s = new string(charArray);
J Jay B. Harlow [MVP - Outlook] Dec 23, 2003 #3 Bill, The String constructor that accepts a char array. Hope this helps Jay