如何将我的int数组类调用到我的下拉列表中

时间:2014-12-07 10:20:12

标签: c# arrays class

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);

1 个答案:

答案 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>的;其构造函数可以根据其内容构建(在本例中为字符串)。