Get CultureInfo by culture English name
.net, c#
Solution
var names = CultureInfo.GetCultures(CultureTypes.AllCultures).ToLookup(x => x.EnglishName);
names["English"].FirstOrDefault();
Problem
Is it possible to get `CultureInfo` by culture English name? Imagine we have got: Danish, English, Spanish and etc... Thank you!