Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am rafalt on github.
  • I am rafalt (https://keybase.io/rafalt) on keybase.
  • I have a public key ASBVhkngisSHZY-ZYApeTtYnYT7U51YGDJstAazucd7C4Qo

To claim this, I am signing this object:

@rtynski
rtynski / Program.cs
Last active January 19, 2017 12:35 — forked from SneakyBrian/Program.cs
XML2JSON command line tool, uses JSON.NET. Usage: XML2JSON.exe input.xml output.json
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using System.Xml;
using Newtonsoft.Json;
using Formatting = Newtonsoft.Json.Formatting;
namespace XML2JSON
{
class Program