0
メソッドに渡される既存のxmlノードから新しいxmlドキュメントを作成しようとしています。これはVB.NETを使用しています。実行する方法 ?ノードからXmlドキュメントを作成
Private Shared Sub WriteChanges(parentNode As XmlNode, nodeName As String, m As Model.ModelBaseWithTracking)
Dim xml As New XmlDocument()
If parentNode.Name = "#document" Then
'Need code here
End If
End Sub