Exemplo n.º 1
0
        public void Original()
        {
            var array = new int[_size];

            Multiplier.CalculateMultiplesOfTwo(array, _size);
            // do something with the data
        }
Exemplo n.º 2
0
        public void ArrayPool()
        {
            var array = ArrayPool <int> .Shared.Rent(_size);

            try
            {
                Multiplier.CalculateMultiplesOfTwo(array, _size);
                // do something with the data
            }
            finally
            {
                ArrayPool <int> .Shared.Return(array);
            }
        }