Combining matching values in 2 observablecollections into a 3rd [WPF]
问题 Hello so I have one ObservableCollection that looks like this: new time { Arrival = stringlist[0], Departure = stringList[1]}; new time2 { Arrived = stringlist[0], Departed = stringList[1]}; I would like to make a new ObservableCollection called datagridTime and insert into this ObservableCollection only records that match so lets say we have Time `ObservableCollection` Arrival | Departure --------------------------------- 10 20 10 30 10 10 Time2 `ObservableCollection` Arrival | Departure ---