using System.Collections.Generic;
using System.Diagnostics;
public static void Main()
List<string> query = new List<string>();
for(int i=0; i<100000;i++)
Stopwatch timeCount = new Stopwatch();
var testCount = timeCount.Elapsed;
Console.WriteLine("testCount = " + testCount + "\n");
Stopwatch timeAny = new Stopwatch();
var testAny = timeAny.Elapsed;
Console.WriteLine("testAny = " + testAny + "\n");