16
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
double d = 0.12e2;
8
Console.WriteLine(d);
9
10
float f = 123.45e-2f;
11
Console.WriteLine(f);
12
13
decimal m = 1.2e6m;
14
Console.WriteLine(m);
15
}
16
}
Cached Result
Name: I am the default name ID: 1
Name: I was built with the other constructor! ID: 1
Name: I was built with an ID set too! ID: 2
Name: I was built with the other constructor! ID: 1
Name: I was built with an ID set too! ID: 2