using System.Linq;
public static string[] ParseArray (object[] arr)
{
  return arr.Select(o => o.ToString()).ToArray();
}