CSharp examples for Language Basics:Hello World
Use underline to separate number to increase readability
using System;//from ww w. j a v a 2 s . c o m class Program { static void Main(string[] args) { double number = 1_750_036.49; Console.WriteLine(number); } }