List<Fruit> fruits = new List<Fruit>();while (reader.Read()){ Fruit f = new Fruit(); f.aID = (string) reader["aID"]; f.bID = (string) reader["bID"]; f.name = (string) reader["name"]; fruits.Add(f);}
List<Fruit> fruits = new List<Fruit>();while (reader.Read()){ Fruit f = new Fruit(); f.aID = (string) reader["aID"]; f.bID = (string) reader["bID"]; f.name = (string) reader["name"]; fruits.Add(f);}