0

我有这个列表:

public static List<int> getData(OdbcConnection conn)
{
    List<int> myData = new List<int>();
    string myQuery = "some Sql text";
    // ...............some other code
    return myData;
}

我需要使用 AddRange 将 List 中的参数添加到组合框:

this.comboBox1.Items.AddRange( new object[] { ??????????? });

我该怎么做?

4

1 回答 1

7

this.comboBox1.Items.AddRange(getData(conn).ToArray());

于 2012-04-06T00:18:12.490 回答