01 | using System; |
02 | using System.Collections.Generic; |
03 | using System.Globalization; |
04 | using System.Linq; |
05 | using System.Text; |
06 |
07 | namespace AbundantcodeConsoleApp |
08 | { |
09 | internal class Program |
10 | { |
11 | private static void Main( string [] args) |
12 | { |
13 | // How to Specify the Number of Decimal Places for a Double value in C# ? |
14 | double Input = 1007.8675; |
15 | Console.WriteLine(Input.ToString( "F2" , CultureInfo.InvariantCulture)); |
16 | Console.ReadLine(); |
17 | } |
18 | } |
19 | |
20 | } |
0 Comments