Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public class LocalizationService
  2. {
  3. private readonly ResourceLoader _loader = null;
  4.  
  5. public LocalizationService(string culture)
  6. {
  7. culture = culture.Replace("-", "");
  8. _loader = ResourceLoader.GetForCurrentView($"Resources_{culture}");
  9. }
  10. }
  11.  
  12. var localizer = new LocalizationService( "fr-FR" )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement