I would like to get the decimal character with vb.net In Greek the decimal character is "," while in other countries they have "." as decimal character.
So how can i read, with .net wh开发者_JS百科at is the decimal character?
Use CultureInfo.CurrentCulture.NumberFormat.NumberDecimalSeparator
.
Look at these properties:
CultureInfo.CurrentCulture.NumberFormat.CurrencyDecimalSeparator
CultureInfo.CurrentCulture.NumberFormat.NumberDecimalSeparator
CultureInfo.CurrentCulture.NumberFormat.PercentDecimalSeparator
精彩评论