Class Car
Public PetName As String
Public ID As Integer
End Class
Module Program
Sub Main()
' .
Dim inventoryDoc As XDocument = _
Green
BMW
Stan
Pink
Yugo
A
Console.WriteLine(inventoryDoc)
inventoryDoc.Save("SimpleInventory.xml")
End Sub
End Module