使用下面的示例对象......
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
public class Worker
{
public int WorkerId { get; set; }
}
}
如何获取List<Worker>
属性的WorkerId
内的最高/最后一个值?
答案 0 :(得分:2)
使用LINQ:
var max = list.Max(x=>x.WorkerId);
答案 1 :(得分:2)
这个怎么样:
var list = new List<Worker>();
int max = list.Max(m => m.WorkerId);