分離ストレージから ListBox に XML ファイルを読み取る次のコードがあります。
using (IsolatedStorageFile isoStore = IsolatedStorageFile.GetUserStoreForApplication())
{
using (IsolatedStorageFileStream isoStream = new IsolatedStorageFileStream("People2.xml", FileMode.Open, isoStore))
{
XDocument loadedCustomData = XDocument.Load(isoStream);
var filteredData = from c in loadedCustomData.Descendants("person")
select new Person()
{
Name = c.Attribute("name").Value,
Beneficiary = c.Attribute("beneficiary").Value,
Price = c.Attribute("price").Value,
Deadline = c.Attribute("deadline").Value,
Index = c.Attribute("index").Value,
Description = c.Attribute("description").Value
};
listBox.ItemsSource = filteredData;
}
}
しかし、このXMLに対して実行すると
<?xml version="1.0" encoding="utf-8" ?>
<people>
<person id="2"
name="przyklad"
price="850"
deadline="22.10.12"
beneficiary="asdasd"
description="xxx" />
</people>
このエラーがあります:
NullReferenceException
このコード フラグメントでは:
select new Person()
{
Name = c.Attribute("name").Value,
Beneficiary = c.Attribute("beneficiary").Value,
Price = c.Attribute("price").Value,
Deadline = c.Attribute("deadline").Value,
Index = c.Attribute("index").Value,
Description = c.Attribute("description").Value
};
何が役立つか知っていますか?