Quantcast
Channel: Empty nodes in an XML file in memory
Browsing latest articles
Browse All 4 View Live

Re: Empty nodes in an XML file in memory

Thank you very much  ramiramilu!!  Appreciate it.That worked.

View Article



Re: Empty nodes in an XML file in memory

var doc = XDocument.Parse(original); var emptyElements = from descendant in doc.Descendants() where descendant.IsEmpty || string.IsNullOrWhiteSpace(descendant.Value) select descendant;...

View Article

Re: Empty nodes in an XML file in memory

http://stackoverflow.com/questions/7318408/remove-empty-xml-tagsthanks,

View Article

Empty nodes in an XML file in memory

How to remove empty nodes from an XML document srored in a STRING VARIABLE IN MEMORYlikedim myxmlDataInMemory as string="<?xml version="1.0" encoding="utf-8"...

View Article
Browsing latest articles
Browse All 4 View Live




Latest Images