using System.Collections.Generic;
public int Id { get; set; }
public string Name { get; set; }
public int Quantity { get; set; }
public double Price { get; set; }
public string Description { get; set; }
static List<Product> db = new List<Product>();
public static void Main()
private static List<Product> ProcessImport(string path)
XDocument xDocument= new XDocument(
new XElement("name", "Ball"),
new XElement("price", "15"),
new XElement("quantity", "2"),
new XElement("description",
new XElement("comment", "aaa")),
new XElement("description",
new XElement("comment", "bbb")),
new XElement("number", "12"))
List<Product> products = xDocument.Descendants("product").Select
Id = Convert.ToInt32(p.Element("id").Value),
Name=p.Element("name").Value,
Quantity = Convert.ToInt32(p.Element("quantity").Value),
Price = Convert.ToDouble(p.Element("price").Value),
Description = string.Join(",", p.Descendants("description").Select(a => a.Element("comment").Value))
foreach(var product in products)
var productInfo = db.SingleOrDefault(p => p.Id.Equals(product.Id));
productInfo.Id = product.Id;
productInfo.Name = product.Name;
productInfo.Quantity = product.Quantity;
productInfo.Price = product.Price;
productInfo.Description= product.Description;
Console.WriteLine("Produto: " + db[db.Count - 1].Name + " Descrição: " + db[db.Count - 1].Description + " -> incluído com sucesso");