using System.Collections.Generic;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json.Converters;
using Newtonsoft.Json.Serialization;
using System.Xml.Serialization;
public static class XNodeExtensions
public static void FlattenCollection(this IEnumerable<XElement> parents, XName childName = null, XName newChildName = null)
throw new ArgumentNullException();
XNamespace json = @"http://james.newtonking.com/projects/json";
XName isArray = json + "Array";
foreach (var parent in parents.ToList())
if (parent.Parent == null)
foreach (var child in (childName == null ? parent.Elements() : parent.Elements(childName)).ToList())
child.Name = newChildName ?? parent.Name;
child.Add(new XAttribute(isArray, true));
parent.Parent.Add(child);
var xml = @"<Root><Drivers>
var xml = @"<Root><Drivers>
var xml = @"<Root><Drivers>
public static void Test()
Test(GetXml1(), "Driver", "CabDriver");
Test(GetXml2(), "Driver", "CabDriver");
Test(GetXml3(), "Driver", "CabDriver");
Test(GetXml1(), "Driver");
Test(GetXml2(), "Driver");
Test(GetXml3(), "Driver");
static void Test(string xml, params XName [] childNames)
var xnode = XDocument.Parse(xml);
Console.WriteLine("Original XML: ");
Console.WriteLine(xnode);
if (childNames.Length == 0)
xnode.Descendants("Drivers").FlattenCollection();
foreach (var childName in childNames)
xnode.Descendants("Drivers").FlattenCollection(childName, childName);
var json = JsonConvert.SerializeXNode(xnode, Newtonsoft.Json.Formatting.Indented, true);
Console.WriteLine("Converted JSON: ");
public static void Main()