예제 #1
0
파일: List.cs 프로젝트: reignstudios/CS2X
        public List()
        {
            bool wasEnabled = GC.DisableAutoCollections();

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