摘要:
现有装满Customer对象的List<Customer>一个,Customer里面有一属性orderID 是数字现在想根据Customer.orderID将List<Customer>排序 请问要怎么做?如果你用的是3.5的framework,用lamda表达式就可以实现,很简单。假设这里开始构建list:List<Customer> list=new List<Customer>();list.add();.......--------这里进行排序-----------list.Sort((customer1, customer2) => 阅读全文