1

DropDownListで値の最大値ASP.NETを取得するにはどうすればよいC#ですか?

方法はありますか、それとも手動で取得する必要がありますか?

4

2 に答える 2

5

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

于 2012-04-09T08:02:34.550 に答える
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
于 2012-04-09T08:09:05.387 に答える