Is it a possibel to assign an array to a DataColumn then bind it to a Combo
box??
Is the follwoing code right?


public static DataSet InsertParamsToDS(ReportParameter[] arrParams)
{

DataSet RepDS=new DataSet();
DataTable objDataTable=new DataTable("ReportParams");
RepDS.Tables.Add(objDataTable);
objDataTable.Columns.Add("Name",typeof(string));
objDataTable.Columns.Add("ValidValues",typeof(ValidValue[]));

foreach(ReportParameter repParam in arrParams)
{
DataRow objDR=objDataTable.NewRow();
objDR ["Name"]=repParam.Name;

/**** I want in my Datagrid instead textbox for ValidValues a
combobox holds the values of "repParam.ValidValues"*//////
objDR ["ValidValues"]=repParam.ValidValues;

objDataTable.Rows.Add(objDR);
}

return RepDS;

}