using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json.Converters;
using Newtonsoft.Json.Serialization;
public static void Test()
var root = JToken.Parse(json);
var xml = JsonConvert.DeserializeXNode(json, "some_root_element_name");
Console.WriteLine("Re-serialized JSON as XML:");
static string GetJson() => @"{
""ageRestrictionText"": ""Under 14s must be accompanied by an adult. We cannot issue refunds to under 14s who are not accompanied by an adult."",
""currencyCode"": ""GBP"",
""dateOnSale"": ""2021-09-03T10:00:00"",
""dateOnSaleUtc"": ""2021-09-03T09:00:00Z"",
""doorsOpen"": ""2022-10-17T19:00:00"",
""doorsOpenUtc"": ""2022-10-17T18:00:00Z"",
""ianaTimeZoneName"": ""Europe/London"",
""mainImageUrl"": ""https://c.ststat.net/content/entimg/tour/an-evening-with-michael-bisping-2029282017-300x300.jpg"",
""multiEventBasketAllowed"": false,
""name"": ""An Evening With Michael Bisping"",
""content"": ""1. Your ticket purchase constitutes a personal, revocable license and, at all times, remains the property of the promoters. This ticket must be surrendered to the promoters upon request.<br />2. Your ticket/s are sold by the promoters directly to you the consumer. Any tickets purchased by business or traders in breach of the terms and conditions of ticket sale will be cancelled. By accepting these terms and conditions you confirm that you are a consumer. <br />3. Your ticket/s will immediately become invalid if resold, or offered for resale, unless the sale is through the official re-sale channels as advertised, or ticket agent fan-to-fan exchange (where applicable). Tickets sold via third parties and other unauthorised outlets, including online auction sites, are not valid for admission. The resale of a ticket renders it invalid and may lead to refusal of entry.<br />4. Ticket sales are limited to a maximum of 6 per person/transaction."",
""id"": ""PG_DF-2026997_1"",
""name"": ""Standard Pricing"",
""availableQuantities"": [
""description"": ""\tPost-show meet & greet with photo\r\n\tPremium seat at the front of the auditorium\r\n\tExclusive item of merchandise\r\n\tShow ticket"",
""id"": ""DF-2026997_1"",
""availableQuantities"": [
""description"": ""\tPremium seat in the front section of the auditorium\r\n\tExclusive item of merchandise\r\n\tShow ticket"",
""id"": ""DF-2026997_2"",
""name"": ""VIP HOT TICKET"",
""priceRestrictions"": [],
""salesChannel"": ""Web"",
""statusText"": ""ORDER"",
""availableQuantities"": [
""id"": ""DF-2026997_3"",
""priceRestrictions"": [],
""salesChannel"": ""Web"",
""statusText"": ""ORDER"",
""availableQuantities"": [
""id"": ""DF-2026997_4"",
""priceRestrictions"": [],
""salesChannel"": ""Web"",
""statusText"": ""ORDER"",
""salePlatform"": ""Online""
""restorationLevy"": 0.0,
""description"": ""Tyne Theatre & Opera House - Newcastle"",
""hasSeatSelectorLayout"": true,
""imageUrl"": ""https://c.ststat.net/content/seatingplans/4fedc64d-747d-484b-b8bd-178120deb36a.jpg"",
""href"": ""https://ticketing-api.seetickets.com/v1/events/df-2026997/seatingplan"",
""starts"": ""2022-10-17T20:00:00"",
""startsUtc"": ""2022-10-17T19:00:00Z"",
""statusText"": ""Order"",
""timeZoneAbbreviation"": ""BST"",
""name"": ""An Evening With Michael Bisping"",
""href"": ""https://www.seetickets.com/tour/an-evening-with-michael-bisping"",
""href"": ""https://ticketing-api.seetickets.com/v1/tours/df-446241"",
""href"": ""https://ticketing-api.seetickets.com/v1/events/df-2026997"",
""href"": ""https://www.seetickets.com/event/an-evening-with-michael-bisping/tyne-theatre-opera-house/2026997"",
public static void Main()
Console.WriteLine("Environment version: {0} ({1})", System.Runtime.InteropServices.RuntimeInformation.FrameworkDescription , Environment.Version);
Console.WriteLine("{0} version: {1}", typeof(JsonSerializer).Assembly.GetName().Name, typeof(JsonSerializer).Assembly.FullName);
Console.WriteLine("Failed with unhandled exception: ");