XML LINQ VB.Net

Imports System
Imports System.Xml
Imports System.Xml.XPath
Public Class MainClass
    Public Shared Sub Main()
        Dim root As XElement = 
        root.ReplaceAttributes( _
        New XAttribute("NewAtt1", 101), _
        New XAttribute("NewAtt2", 102), _
        New XAttribute("NewAtt3", 103))
        Console.WriteLine(root)
        
    End Sub
End Class