Advertisement
Guest User

Untitled

a guest
Oct 4th, 2022
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. private List<Country> Countries => CountryCodes
  2. .Select(x => new Country
  3. {
  4. CountryCode = x,
  5. FlagEmoji = $"{IsoCountryCodeToFlagEmoji(x)} (+{PhoneNumberUtil.GetInstance().GetCountryCodeForRegion(x)})"
  6. })
  7. .ToList();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement