-1

以下のコードを実行すると、エラーが表示されます

「呼び出しのターゲットによって例外がスローされました」

この問題を解決するにはどうすればよいですか?

public LinqToXml()
{
    XDocument document = XDocument.Load(@"D:\\Data.xml");
    #region Fetch All the Books
    var books = from r in document.Descendants("book") 
                select new
                {
                    Author = r.Element("author").Value,
                    Title = r.Element("title").Value,
                    Genere = r.Element("genre").Value,
                    Price = r.Element("price").Value,
                    PublishDate = r.Element("publish_date").Value,
                    Description = r.Element("description").Value,

                };

    foreach (var r in books)
    {
        com_xdocuments.Items.Add(r.PublishDate + r.Title + r.Author);                            

    }

    #endregion 
}
4

1 に答える 1

0

そうじゃないかな

XDocument document = XDocument.Load(@"D:\Data.xml");

どちらも同じ@"D:\Data.xml"で、"D:\\Data.xml"

于 2012-06-27T09:58:13.363 に答える