摘要:
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) { 阅读全文
摘要:
准备工作 public class CutEntity { public int Id { get; set; } public string CutType { get; set; } public string EdgeSide { get; set; } public double X { g 阅读全文