Exemple #1
0
        private void RecycleExtracted()
        {
            // Assume anything could have been set to null, start no sync operation, this could be running during DomainUnload
            var entries = _entries;

            if (entries != null)
            {
                ArrayReservoir <int> .DonateArray(entries);

                _entries = null;
            }
        }
Exemple #2
0
        private void RecycleExtracted()
        {
            ArrayReservoir <int> .DonateArray(_entries);

            _entries = null;
        }