I have a method which returns numbers like this:
public decimal GetNumber()
{
return 250.00m;
}
Now when this value is printed to the c
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;
}
}