در این ویدئوی آموزشی نحوه استفاده از رشته xml برای مدیریت سند xml و ذخیره سازی آن بصورت فایل توضیح داده شده....
Imports System.Xml
Private XDocument As New XmlDataDocument
With XDocument
.LoadXml(My.Resources.ProjectTemplate)
With .DocumentElement
Debug.Print(.GetAttribute("title"))
Debug.Print(.Item("Media").InnerText)
With .Item("Items")
For Each Item As XmlElement In .ChildNodes
Debug.Print("Item:> id: {0} - time: {1}", Item.GetAttribute("id"), Item.GetAttribute("time"))
For Each Child As XmlElement In Item.ChildNodes
Debug.Print(Child.InnerText)
Item.SetAttribute("id", "")
Next Child
Next Item
End With
End With
End With