I'm getting this
Unable to cast object of type 'System.Int64' to type 'System.String'.
from following code snippet:
IList<long> Ids = new List<long>();
Ids.Add(6962056);
Ids.Add(7117210);
Ids.Add(13489241);
var stringIds = Ids.Cast<string>().ToArray();
and Booooooooooooom .... ideas ?