List<String> nameList = new List<String>();
DropDownList ddl = new DropDownList();
列表在這裏居住,然後進行排序:C# - 傾銷名單的下拉列表
nameList.Sort();
現在我需要把它放到下拉列表,這就是我遇到的問題(使用的foreach ):
foreach (string name in nameList){
ddl.Items.Add(new ListItem(nameList[name].ToString()));
}
沒有工作 - 任何建議嗎?它給我的編譯錯誤:
Error - The best overloaded method match for 'System.Collections.Generic.List<string>.this[int]' has some invalid arguments
Error - Argument '1': cannot convert from 'string' to 'int'