• [No000086]C#foreach集合被改变,报错处理方案


    using System;
    using System.Collections;
    using System.Collections.Generic;
    using System.Diagnostics;
    using System.Linq;
    
    namespace ConsoleTest
    {
    
        class Program
        {
            class Test
            {
                public string Num = "";
            }
    
            static void Main(string[] args)
            {
    
                List<Test> listTest = new List<Test>();
    
                for (int i = 0; i < 10; i++)
                {
                    listTest.Add(new Test { Num = i.ToString() });
                }
                int NumCount = 10;
                //foreach (var list in listTest)
                //{
                //    NumCount++;
                //    if (listTest.Count < 20)
                //    {
                //        listTest.Add(new Test { Num = NumCount.ToString() });
                //    }
                //    Console.WriteLine(list.Num);
                //}//报错
                NumCount = 100;
                for (int i = 0; i < listTest.Count; i++)
                {
                    NumCount++;
                    if (listTest.Count < 20)
                    {
                        listTest.Add(new Test { Num = NumCount.ToString() });
                    }
                    Console.WriteLine(listTest[i].Num);
                }
    
                Dictionary<string, string> dict = new Dictionary<string, string>();
                dict.Add("1", "helo1");
                dict.Add("2", "helo2");
                var keysList = new string[dict.Count];
                dict.Keys.CopyTo(keysList, 0);
                foreach (var key in keysList)
                {
                    Console.WriteLine("key_  " + key.ToString() + ":" + dict[key]);
                    dict.Remove(key);          //   Response.Write("key" + key.ToString() + ":" + dict[key]);   
                }
                Console.WriteLine("AfterRemoved!=========================================");
    
                foreach (var dic in dict)
                {
                    Console.WriteLine(dic.Key, dic.Value);
                }
                Console.WriteLine("dic AfterShow!=========================================");
    
                Dictionary<int, string> dict2 = new Dictionary<int, string>();
                dict2.Add(1, "helo21");
                dict2.Add(2, "helo22");
                var keysList2 = new int[dict2.Count];
                dict2.Keys.CopyTo(keysList2, 0);
                foreach (var key2 in keysList2)
                {
                    Console.WriteLine("key_  " + key2.ToString() + ":" + dict2[key2]);
                    dict.Remove(key2.ToString());          //   Response.Write("key" + key.ToString() + ":" + dict[key]);   
                }
                Console.WriteLine("dict2 AfterRemoved!=========================================");
    
                foreach (var dic in dict)
                {
                    Console.WriteLine(dic.Key, dic.Value);
                }
    
    
                Console.ReadLine();
    
                Console.Read();
    
    
            }
        }
    }
  • 相关阅读:
    mklink让网盘同步不同文件夹
    WINDOWS 的 MKLINK : 硬链接,符号链接 : 文件符号链接, 目录符号链接 : 目录联接
    Dropbox Folder Sync – 让 Dropbox 同步任意文件夹
    Tasker : Scale Up/Down CPU Speed at Different Times
    Tasker : Task / Shortcut Widgets
    Automate Screen or Button Taps via Tasker : Simulating keypress events
    Solution for sending Whatsapp via sqlite "INSERT INTO"
    SQL Server复制出错文章集锦
    SQL Server 2016 CTP2.2 的关键特性
    SQL Server表分区的NULL值问题
  • 原文地址:https://www.cnblogs.com/Chary/p/No000086.html
Copyright © 2020-2023  润新知