Well I would like to know how to find a value in the System.Collections.Generic.List.

I have:
Private ids As New List(Of Byte())
ids.add(New Byte(){&HA8,&H0F})
ids.add(New Byte(){&HFF,&H03})
ids.add(New Byte(){&H10,&H00})

I would like to find for example: &H10,&H00
in that list and if there isn't the stuff I wan't to find then how do I know that?