<?xml version="1.0"?>
<Node1
...

C# Formatting XML

by JimMcKeeth, June 18, 2010 01:46, 3 refactorings, tagged with xml, formatting, simplicity, performance

I have an unformatted XML s...

E5ca3abec062f8174570a4b1d1c840d8 Talk
public static class ObjectToXmlConverter
{
    #region Class Methods
...

C# XML Object Serializer to XS...

by dotnetchris, September 25, 2009 19:20, 2 refactorings, tagged with xml, C#, serialization, xslt, transform

I'm using XSLT for document...

F0e7c2d0d5d83c928cfcfce66928160e Talk
public class XmlStringSerializer
	{
		static Dictionary<string, Type> types = new Dictionary<string, Type>();
...

C# Polymorphic XML serializer

by mcintyre321, January 22, 2009 01:04, 3 refactorings, tagged with xml, serialization

The default XML serializer ...

4908618aea7c32eb0f94d398b57fa28d Talk