如何使用DropDownList
在ASP.NET
中获取C#
值的最大值?
是否有任何方法或我应该手动获取它?
答案 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