Best way to convert IEnumerable to string? April 22, 2023 by Tarik How about this to convert IEnumerable<char> to string: string.Concat(x.TakeWhile(char.IsLetter));