public static int[] ddDuration()
{
int[] ddarray = new int[] { 1, 2, 3, 4, 5 };
return ddarray;
}
如何使用c#将我的int数组调用到DropDownList
//and I am try to show in my DropDownList
//like that some thing
Duration dm = new Duration();
//dm.ddDuration;
//dropdduration.item.AddRang(dm.ddDuration);
答案 0 :(得分:0)
如果我做对了,你就是在尝试将一个整数数组作为项添加到DropDownList。
var collection = ddDuration();
int len = collection.length;
for(int i=0; i<len; i++){
DropDownList1.Items.Insert(i, new ListItem(collection[i].toString(), ""));
}
插入的第一个参数是 Items 集合中的位置(索引),第二个参数是 ListItem < / em>的;其构造函数可以根据其内容构建(在本例中为字符串)。