如何获得with中的DropDownList
值的最大值?ASP.NET
C#
有什么方法还是我应该手动获取?
int maxValue = DropDownList1.Items.Cast<ListItem>().Select(item => int.Parse(item.Value)).Max();
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