hi
I used list (of t)
How can I search in the following list
To find 1 one book by a7
And to Find all the book by genre.roman
Bit of code
Private LijstBoeken As List(Of Boek)
LijstBoeken = New List(Of Boek)({
New Boek("B6", "A6", Boek.genre.Roman),
New Boek("B7", "A7", Boek.genre.Detective),
New Boek("B8", "A8", Boek.genre.Fictie),
New Boek("B9", "A9", Boek.genre.Roman)})
I used list (of t)
How can I search in the following list
To find 1 one book by a7
And to Find all the book by genre.roman
Bit of code
Private LijstBoeken As List(Of Boek)
LijstBoeken = New List(Of Boek)({
New Boek("B6", "A6", Boek.genre.Roman),
New Boek("B7", "A7", Boek.genre.Detective),
New Boek("B8", "A8", Boek.genre.Fictie),
New Boek("B9", "A9", Boek.genre.Roman)})