摘要: 1、列表A的直接赋值给列表B List<int> a = new List<int>(); a.Add(1); a.Add(2); a.Add(3); a.Add(4); a.Add(5); List<int> b = a; b.RemoveAt(0); foreach (int i in a) { 阅读全文
posted @ 2025-08-25 22:14 孤沉 阅读(5) 评论(0) 推荐(0)