I feel stupid to ask, but there should be one liner, which is the equivalent or almost the equivalent of the code below in C # ... so can you tell me what it is?
public static string[] ToStringArray(int[] i) { if (i==null) return null; string[] result = new string[i.Length]; for (int n= 0; n< result.Length; n++) result[n] = i[n].ToString(); return result; }
source share