コード例 #1
0
ファイル: List.cs プロジェクト: reignstudios/CS2X
        public List()
        {
            bool wasEnabled = GC.DisableAutoCollections();

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