I have taken data from a database and it is in List<> myList. There are 14 columns. I need to keep this list as it is for use later in the process I am doing.
Is it possible to copy certain columns into a new list or an object? if it is possible, how can i do it? unfortunately these are not columns 1, 2, 3, 4, 5.
The data i need is in columns 1, 7, 9.
As well as this I need an extra bit of data from a variable tagged on the end.
I want my newly created list to be ID(column1 of original data), title(column7), surname(column9), todays date(variable).