XML VB.Net

Imports System.Xml
Imports System.Xml.Serialization
Imports System.IO
Public Class MainClass
   Public Shared Sub Main()
        Dim dehydrated As FileStream = New FileStream("test.xml", FileMode.Open)
        Dim serialize As XmlSerializer = New XmlSerializer(GetType(Product_Multiple))
        Dim myProduct As Product_Multiple = New Product_Multiple
        myProduct = serialize.Deserialize(dehydrated)
        Dim SingleProduct As Product
        For Each SingleProduct In myProduct.multiProducts
            Console.Out.WriteLine("{0}, {1}, {2}", _
               SingleProduct.name, _
               SingleProduct.productId, _
               SingleProduct.quantity)
        Next
   End Sub
End Class
Public Class Product_Multiple
    Public multiProducts() As Product
    Public Sub New()
    End Sub
    Public Sub New(ByVal multiProducts() As Product)
        Me.multiProducts = multiProducts
    End Sub
End Class
Public Class Product
    Public name As String
    Public productId As Integer
    Public quantity As Integer
    Public Sub New()
    End Sub
    Public Sub New(ByVal name As String, _
                   ByVal productId As Integer, _
                   ByVal quantity As Integer)
        Me.name = name
        Me.productId = productId
        Me.quantity = quantity
    End Sub
End Class
'
'
'  
'    
'      Grease
'      101
'      10
'    

'    
'      Lawrence of Arabia
'      102
'      10
'    

'    
'      Star Wars
'      103
'      10
'    

'  

'