1
這裏是iOS的代碼,我有:什麼是Windows Phone 7的C#相當於iOS調用[[NSLocale currentLocale] localeIdentifier]?
[[[NSLocale currentLocale] localeIdentifier] isEqualToString:@"en_US"]
有什麼對Windows Phone 7的C#有相似找出本地用戶已選擇其設備上?
這裏是iOS的代碼,我有:什麼是Windows Phone 7的C#相當於iOS調用[[NSLocale currentLocale] localeIdentifier]?
[[[NSLocale currentLocale] localeIdentifier] isEqualToString:@"en_US"]
有什麼對Windows Phone 7的C#有相似找出本地用戶已選擇其設備上?
我猜你會想用
System.Globalization.CultureInfo.CurrentCulture
或
System.Globalization.CultureInfo.CurrentUICulture
您可以使用IetfLanguageTag
屬性
System.Globalization.CultureInfo.CurrentCulture.IetfLanguageTag == "en_US"
有人請證實這一點,但這裏是我想答案可能是:
if (CultureInfo.CurrentCulture.Name.ToString() == "en-US")