Why with
double number = double.Parse(Console.ReadLine());
Console.WriteLine($"{number:0.00}");
or
double number = double.Parse(Console.ReadLine());
Console.WriteLine("{0:0.00}", number);
the console doesn't write the fractional number i have writen and says:
"Unhandled exception. System.FormatException: Input string was not in a correct format."