summary refs log tree commit diff
path: root/double2int/test/Program.cs
blob: d0224e7fc7f364cb3150e25f85579ca1fd96d011 (plain) (blame)
1
2
3
4
5
double d1 = 9.55;
int i1 = (int)d1;

Console.WriteLine(d1);
Console.WriteLine(i1);