1

使用下面的示例对象...

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

4

2 回答 2

2

使用 LINQ:

var max = list.Max(x=>x.WorkerId);
于 2013-06-11T19:54:19.220 回答
2

这个怎么样:

var list = new List<Worker>();
int max = list.Max(m => m.WorkerId);
于 2013-06-11T19:54:33.243 回答