XElement.SetValue sets the value of this element.
Imports System Imports System.Xml Imports System.Xml.XPath Public Class MainClass Public Shared Sub Main() Dim root As XElement = _ <Root> <Child>child content</Child> </Root> root.SetValue("new content") Console.WriteLine(root) End Sub End Class