What is the best way to create acronym from upper letters in C#?
Example:
Alfa_BetaGameDelta_Epsilon
Expected r
string.Join("", s.Where(x => char.IsUpper(x))