Hi,
I have created a class that contains 14 bytes of data held in a BindingList, the list gets data when 14 valid bytes arrive from the serial port, so the datagridview is being used to display live data.
The data is then displayed using a datagridview control, as the datasource is set as the bindingsource, when data is added to the list the view is updated.
Is there an way to filter the data using LINQ? such that when the filter is removed the filtered out data is returned to the datagrid view?
as the user may only de interested in a certain type of data and then, may need to remove the filter to look at the whole data collection for errors etc
I am not using a database as I don't need to keep the data after the application has closed, and the data is being added to the list reasonable quickly (500ms) so I am keeping the data in memory.
Student [Visual C#.Net / VB.Net]