new XElement("Opinions",
cblOpinion.Items.OfType
.Where(o => o.Selected)
.Select(o => new XElement("Opinion", o.Text)))
.Save(filePath);
This created a nice XML file that looked like:
Pretty nifty!
Just some random development ramblings mostly related to the Microsoft .NET platform.
Oh no! I accidentally blocked the RDP port on an Azure virtual machine which resulted in not being able to log into the VM anymore. I did ...
No comments:
Post a Comment