DropDownList
で値の最大値ASP.NET
を取得するにはどうすればよいC#
ですか?
方法はありますか、それとも手動で取得する必要がありますか?
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