Settings.cs

15 lines | 305 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tools.Collections.Concurrent.AsyncBuffer.UnitTest
{
    public static class Settings
    {
        public static int Count { private set; get; }
            = 100000;
    }
}