0
我認爲XML區分大小寫?我正在查看XML文件以查找將爲<標題>或<標題>的字段。我使用下面的代碼:XDocument.Descendents不區分大小寫
If Not xmlDoc.Descendants("Header") Is Nothing Then
do something
ElseIf Not xmlDoc.Descendants("header") Is Nothing Then
do something else
Else
Print(1, "No header information found" & vbCrLf)
messageText.Text = "Validation Complete"
Return false
End If
所以我在看有<頭一個XML文件>和「做一些事情」線正在運行!我怎樣才能使這個區分大小寫thingymabob?