using System.Diagnostics;
using System.Collections.Concurrent;
public static void Main()
ConcurrentStack<int> t = new();
t.PushRange(new int[] {1,2,3,4,5,6,7,8});
Stopwatch st = Stopwatch.StartNew();
Console.WriteLine($"count {t.Count}");
Console.WriteLine(st.Elapsed.Milliseconds );