How can I sort an IEnumerable alphabetically. Is this possible?
IEnumerable
Edit: How would I write an in-place solution?
myEnumerable = myEnumerable.OrderBy(s => s);