2017-02-23 65 views

回答

0

據我知道有沒有直接的財產來獲取,但你可以使用這個小竅門:

var currencyInUse = new Windows.Globalization.GeographicRegion().CurrenciesInUse[0]; 
var currencyFormatter = new Windows.Globalization.NumberFormatting.CurrencyFormatter(currencyInUse) { IsDecimalPointAlwaysDisplayed = false, FractionDigits = 0 }; 
var currencySymbol = currencyFormatter.Format(0).Replace("0", ""); 
相關問題