Quote Originally Posted by .paul. View Post
to deserialize:

vb Code:
  1. ItemsOrders = New List(Of Item)
  2. Dim serializer As New Xml.Serialization.XmlSerializer(GetType(List(Of Item)))
  3. Dim SR As New IO.StreamReader("test.xml")
  4. ItemsOrders = DirectCast(serializer.Deserialize(SR), Global.System.Collections.Generic.List(Of Item))
  5. SR.Close()
WIth that code, to then call items from the XML..

I use ItemsOrder(0) or how?