Mega Code Archive
XElement Value Property gets or sets the concatenated text contents of this element
Imports System
Imports System.Xml
Imports System.Xml.XPath
Public Class MainClass
Public Shared Sub Main()
Dim el As XElement = This is mixed content
Console.WriteLine("{0}", el.Value)
End Sub
End Class