using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
const int _max = 10000000;
var s1 = Stopwatch.StartNew();
for (int i = 0; i < _max; i++)
List<string> list = new List<string>()
var s2 = Stopwatch.StartNew();
for (int i = 0; i < _max; i++)
List<string> list = new List<string>();
Console.WriteLine(((double)(s1.Elapsed.TotalMilliseconds * 1000000) /
_max).ToString("0.00 ns"));
Console.WriteLine(((double)(s2.Elapsed.TotalMilliseconds * 1000000) /
_max).ToString("0.00 ns"));