I have an integer array that looks like
int[] arr= new int[] {1,2,3,4};
and i want to convert this into a string like
string str="1,2,3,4";
and vice verse in .net Compact framework 2.0.
I have tried using string.join and Array.convertAll to conver int array to string. But it is not working in .Net Compact Framework 2.0.
What is the best and fastest way of doing this in .net Compact framework 2.0?
Check if this works: