我有一个 ArrayList
...
while (reader.Read())
{
decimal nr_zbor = reader.GetDecimal(cod_zbor);
string airport = reader.GetString(name_aeroport);
string company = reader.GetString(name_company);
list.Add(nr_zbor);
list.Add(airport);
list.Add(company);
}
...
我希望放入 listview columns[zbor,airport,company],但我现在不知道如何
fly = searchFly.GetFly(direction, country, theDate, DFlexible);
你能帮助我吗?