using System.Diagnostics;
static void Main(string[] args)
StructTest structValue = new StructTest();
ClassTest classValue = new ClassTest();
Stopwatch stopwatch = new Stopwatch();
for (int i = 0; i < 100_000_000; i++)
Console.WriteLine("Struct elapsed time: {0}", stopwatch.Elapsed);
for (int i = 0; i < 100_000_000; i++)
Console.WriteLine("Class elapsed time: {0}", stopwatch.Elapsed);