c# decimal toString() conversion with comma(,)

后端 未结 5 1157
轮回少年
轮回少年 2021-02-08 11:11

c# decimal.toString() conversion problem

Example: I have a value in decimal(.1) when I convert decimal to string using toString() it return

5条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-08 11:23

    For comma (,)

    try this:

    decimalValue.ToString(System.Globalization.CultureInfo.CreateSpecificCulture("tr-tr"))
    

提交回复
热议问题