ToList内的C#XML ToList

时间:2010-10-28 16:29:55

标签: c# xml silverlight tolist

我有以下C#代码,我不知道为什么它不起作用(我收到NullReferenceException错误)。如果我将Recipe定义为新List(),一切都开始正常工作。

foreach (XElement element in document.Descendants("vegetables"))
        {
            VegetablesList = (
                from vegetables in element.Elements()
                select new FoodItem()
                {
                    Name = (vegetables.Element("name") == null) ? null : vegetables.Element("name").Value.ToString(),
                    Bcg = (vegetables.Element("bcg") == null) ? null : vegetables.Element("bcg").Value.ToString(),
                    Info = (vegetables.Element("info") == null) ? null : vegetables.Element("info").Value.ToString(),
                    Recipes = (
                        from recipes in element.Element("recipes").Elements()
                        select new Recipe()
                        {
                            Name = (recipes.Element("name") == null) ? null : recipes.Element("name").Value.ToString(),
                            Text = (recipes.Element("text") == null) ? null : recipes.Element("text").Value.ToString()
                        }
                    ).ToList()
                }
            ).ToList();
            VegetablesListBox.ItemsSource = VegetablesList;
        }

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

我的猜测是element.Element("recipes")返回null,这意味着该迭代不存在recipes元素。