摘要: List<int> list = new List<int>(); //新增数据 list.Add(123); //修改数据 list[0] = 345; //移除数据 list.RemoveAt(0); //list的排序 list.Sort(); //list的遍历 foreach(int i 阅读全文
posted @ 2022-02-24 14:36 ꧁执笔小白꧂ 阅读(408) 评论(0) 推荐(0)