質問するのはばかげていると思いますが、以下のコードと同等またはほぼ同等のc#を実行する1つのライナーが必要です...それが何であるか教えていただけますか?
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;
}