I have the following code:
var personIds = from player in myPlayers select player.person_id;
where personIds is an IEnumerable<string> that I'd like to convert to List<ulong>, since person_id is convertable via Convert.ToUInt64()
Is this easily done in LINQ?