相关源码
https://github.com/JackYan666/CSharpCode/blob/main/CSharpCode.cs
0.简要概括
1.删除集合元素
1.For循环删除集合元素:从后面往前删除
从前往后删,有可能不能完全删除
#region 01.For循环删除集合元素void Test01_ForDelListElement(){//错误代码 虽然可以跑起来看似是正常的 有错误//List<string> list = new List<string>() { "red", "green", "blue", "gray", "yellow", "white", "orange" };//for (int i = 0; i < list.Count; i++)//{// if (list[i].Equals("blue"))// {// list.Remove("blue");//