I am developing a Xamarin.Forms app (portable class library project) with Visual Studio 2013 CE. First I\'m focusing the iOS version.
Now I\'m thinking about how to make
you can call setLocale method available in each platform projects from PCL using the interface ILocalize like this:
CultureInfo ci=new CultureInfo("ar"); Xamarin.Forms.DependencyService.Get().SetLocale(ci); AppResources.Culture = ci;