Answer the question
In order to leave comments, you need to log in
How to convert sheet property to array?
There is such a leaf that I fill out from xml
List<Lpu> mo = doc.Descendants("glpu")
.Select(x => new Lpu
{
reenom = Convert.ToInt32(x.Element("reenom").Value),
name = x.Element("name").Value
})
.ToList();
class Lpu
{
public int reenom { get; set; }
public string name { get; set; }
}
List<Lpu> mo
?
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question