我们正在尝试从单独的 XML 文档中读取信息。
这是我们的代码:
'load the XMLTest document containing cars.
Dim xml As XDocument = XDocument.Load("CreditApp.xml")
Dim SSN As String = txtSSN.Text
'get all car makes that are red.
Dim query = From xe In xml.Descendants("SSN")
Where xe.Element("SSN").Value = SSN
Select New With {
.FName = xe.Element("FName").Value 'Error in code is here
}
'loop through query result output results.
For Each element In query.ToArray
MessageBox.Show(element.FName)
Next
我们收到错误:
你调用的对象是空的。
我们也不确定它指的是什么。