我有这个列表:
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[] { ??????????? });
我该怎么做?