Question
I have a simiar XML file stored in my physical drive , how i can create a new record using C# in this xml
file ? , is it possible to do it with LINQ? or is there an any other method ?
[other method should not be read the whole file and concat and save back using a filestream
]
Sample XML:
<products>
<product>
<id>1</id>
<price>1150</price>
</product>
</prodcuts>