If a literal has a decimal point or has an exponential symbol, it is a double.
using System;
class Program
{
static void Main(string[] args)
{
Console.WriteLine(1.GetType());
Console.WriteLine(1.6.GetType());
Console.WriteLine(1E06.GetType());
}
}
The output:
System.Int32
System.Double
System.Double