DropDownList中的最大值 - ASP.NET

时间:2012-04-09 07:59:05

标签: c# asp.net drop-down-menu max

如何使用DropDownListASP.NET中获取C#值的最大值?

是否有任何方法或我应该手动获取它?

2 个答案:

答案 0 :(得分:5)

int maxValue = DropDownList1.Items.Cast<ListItem>().Select(item => int.Parse(item.Value)).Max();

答案 1 :(得分:1)

DropDownList1.Items.Cast<ListItem>().Max(j => j.Value) // For string comparison

或者,

DropDownList1.Items.Cast<ListItem>().Max(j => int.Parse(j.Value)) // If you want max int