десериализация:
Using stream As IO.FileStream = IO.File.Open(ThumbFilePath, IO.FileMode.Open, IO.FileAccess.Read)
Dim formatter As New Runtime.Serialization.Formatters.Binary.BinaryFormatter
ImageList = CType(formatter.Deserialize(stream), List(Of System.Drawing.Image))
End Using