C# decimal separator?

后端 未结 4 2037
孤独总比滥情好
孤独总比滥情好 2020-12-10 03:20

I have a method which returns numbers like this:

public decimal GetNumber()
{
    return 250.00m;
}

Now when this value is printed to the c

相关标签:
4条回答
  • 2020-12-10 03:27

    I have checked it with visual studio 2008 (console application) and its not showing "," instead of "." , please provide more details. I think its issue of culture-info. please provide some more code details

    class Program
    {
        static void Main(string[] args)
        {
            Console.Write(GetNumber());
        }
        public static  decimal GetNumber()
        {
            return 250.00m;
        }
    
    }
    
    0 讨论(0)
  • 2020-12-10 03:35

    As explained by Jon Skeet, you should specify the culture used to format the string:

    var str = GetNumber().ToString(System.Globalization.CultureInfo.InvariantCulture);
    

    It's a good practice to always use the ToString overload in which you specify the culture. Otherwise, .NET use the current thread Culture, which would write different strings to the output according to the locale of the PC...

    0 讨论(0)
  • 2020-12-10 03:40

    Locale-specific formatting?

    http://en.wikipedia.org/wiki/File:DecimalSeparator.svg (Green equals a comma, so if you are calling ToString() on your decimal using the culture info of any of these locations, you will see a comma).

    0 讨论(0)
  • 2020-12-10 03:43

    decimal itself doesn't have formatting - it has neither a comma nor a dot.

    It's when you convert it to a string that you'll get that. You can make sure you get a dot by specifying the invariant culture:

    using System;
    using System.Globalization;
    using System.Threading;
    
    class Test
    {
        static void Main()
        {
            Thread.CurrentThread.CurrentCulture = new CultureInfo("fr-FR");
            decimal d = 5.50m;
            string withComma = d.ToString();
            string withDot = d.ToString(CultureInfo.InvariantCulture);
            Console.WriteLine(withComma);
            Console.WriteLine(withDot);
        }
    }
    
    0 讨论(0)
提交回复
热议问题