Dim xmlNode As String = "<?xml version='1.0'?>" &
"<listname>Files list</listname>" &
"<lastlistupdate>02/08/2018</lastlistupdate>" &
"<project name=""file001"" index=""True"" image=""x"">" &
"<description>ABC Project</description>" &
"<month>January</month>" &
"<project name=""file002"" index=""true"" image=""x"">" &
"<description>DEF Project</description>" &
"<month>February</month>" &
Dim filename As String = ""
Dim XMLReader As XmlReader = XmlReader.Create(New StringReader(xmlNode))
If .IsStartElement() Then
filename = .GetAttribute(0)
Console.WriteLine(filename)
title = .ReadElementString
Console.WriteLine("Found: " & filename & " - " & title)