Ejemplo n.º 1
0
        public List()
        {
            bool wasEnabled = GC.DisableAutoCollections();

            _items = new T[0];
            if (wasEnabled)
            {
                GC.EnableAutoCollections();
            }
        }