R
roidy
I have the following code:-
<Serializable()> Structure TestStruct
Dim test1 As String
Dim test2 As String
Dim test3 As Interger
End Structure
Public TestList As New List(Of TestStruct)
I then add a bunch of items to the list, my question is how do I save the
entire List to a disk file? I have no problem writing a single TestStruct
using serialization, but can`t figure out how to write the entire List. It
seems you can`t serialize a List.
Rob
<Serializable()> Structure TestStruct
Dim test1 As String
Dim test2 As String
Dim test3 As Interger
End Structure
Public TestList As New List(Of TestStruct)
I then add a bunch of items to the list, my question is how do I save the
entire List to a disk file? I have no problem writing a single TestStruct
using serialization, but can`t figure out how to write the entire List. It
seems you can`t serialize a List.
Rob