Browse by Tags

Sorry, but there are no more tags available to filter with.
Obtaining Indented XML as a String
Published Tue, Jun 22 2004 0:55 | coad
Using XmlDocument.Save(string file) produces a file with nicely indented elements. XmlDocument.OuterXml returns a string without any formatting. If you want a nicely formatted string (to display to the user, write to console, etc), without directly writing...
Filed under: ,
Assimilate XML RSS Feed from URL in C#
Published Wed, Apr 14 2004 21:46 | coad
This piece of code pulls an RSS feed and displays the title of the articles. It is here to demonstrate just how easy it is to pull XML off the web and utilize the data. I use Trace.WriteLine instead of Console.WriteLine so the report is fed to the Visual...
Filed under: ,
Simple C# XSL Transformation
Published Tue, Apr 13 2004 23:06 | coad
“XSLTransform.cs” And here is a simple C# translator that takes an XML file sends it through an XSL file transform and saves the output. It is intended to be used as a console application. This can be easily used to apply the CSV transform XSL to Vocabulary...
Filed under: ,