I have a class with list<Book>in it, and those Bookobjects have many properties.
string Subjectis one of those properties.
I would like to get a type value string[]that will include all the different items from the list.
Is there an elegant way to do this, or will I have to scan the entire list and enter every object into it, and then delete duplicates?
iTayb source
share