using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Collections.ObjectModel;
using System.Runtime.Serialization;
using System.ComponentModel;
using System.Globalization;
using System.Collections.Specialized;
using System.Text.RegularExpressions;
using System.Xml.Serialization;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json.Converters;
using Newtonsoft.Json.Serialization;
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.34283")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable = true)]
public partial class Scores : baseModel
private System.Xml.XmlAttribute[] anyAttrField;
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
public System.Xml.XmlAttribute[] AnyAttr
return this.anyAttrField;
this.anyAttrField = value;
public partial class LandingPage : baseModel
private string projectNameField;
private Scores scoresField;
[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string projectName
get { return this.projectNameField; }
set { this.projectNameField = value; }
[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
get { return this.scoresField; }
set { this.scoresField = value; }
public partial class baseModel
[JsonConverter(typeof(ScoresConverter))]
public partial class Scores
public class XmlAttributeArrayConverter : JsonConverter
public override bool CanConvert(Type objectType)
return objectType == typeof(XmlAttribute[]);
public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
if (reader.TokenType == JsonToken.Null)
var dict = serializer.Deserialize<Dictionary<string, string>>(reader);
var doc = new XmlDocument();
return dict.Select(p => { var a = doc.CreateAttribute(p.Key); a.Value = p.Value; return a; }).ToArray();
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
var attributes = (IEnumerable<XmlAttribute>)value;
var dict = attributes.ToDictionary(a => a.Name, a => a.Value);
serializer.Serialize(writer, dict);
class ScoresConverter : JsonConverter
public override bool CanConvert(Type objectType)
return objectType == typeof(Scores);
public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
if (reader.TokenType == JsonToken.Null)
var attributes = (XmlAttribute[])new XmlAttributeArrayConverter().ReadJson(reader, typeof(XmlAttribute[]), null, serializer);
return new Scores { AnyAttr = attributes };
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
var scores = (Scores)value;
if (scores.AnyAttr == null)
new XmlAttributeArrayConverter().WriteJson(writer, scores.AnyAttr, serializer);
public static void Test()
Console.WriteLine("Initial JSON: ");
var root = RoundTripJson<LandingPage>(json);
static void RoundTripXml<T>(T root)
var root2 = xml.LoadFromXml<T>();
var xml2 = root2.GetXml();
Console.WriteLine("Round-tripped XML: ");
Assert.IsTrue(System.Xml.Linq.XNode.DeepEquals(System.Xml.Linq.XElement.Parse(xml), System.Xml.Linq.XElement.Parse(xml2)));
Console.WriteLine("Serialized and re-serialized XML are identical. ");
static T RoundTripJson<T>(string json)
var root = JsonConvert.DeserializeObject<T>(json);
var json2 = JsonConvert.SerializeObject(root, Newtonsoft.Json.Formatting.Indented);
Console.WriteLine("Round-tripped JSON: ");
Console.WriteLine(json2);
""projectName"":""PROJECTTEST"",
public static void Main()
Console.WriteLine("Environment version: " + Environment.Version);
Console.WriteLine("Json.NET version: " + typeof(JsonSerializer).Assembly.FullName);
public static class XmlSerializationHelper
public static T LoadFromXml<T>(this string xmlString, XmlSerializer serial = null)
serial = serial ?? new XmlSerializer(typeof(T));
T returnValue = default(T);
using (StringReader reader = new StringReader(xmlString))
object result = serial.Deserialize(reader);
public static string GetXml<T>(this T obj, bool omitStandardNamespaces)
return obj.GetXml(null, omitStandardNamespaces);
public static string GetXml<T>(this T obj, XmlSerializer serializer = null, bool omitStandardNamespaces = false)
XmlSerializerNamespaces ns = null;
if (omitStandardNamespaces)
ns = new XmlSerializerNamespaces();
using (var textWriter = new StringWriter())
var settings = new XmlWriterSettings() { Indent = true };
using (var xmlWriter = XmlWriter.Create(textWriter, settings))
(serializer ?? new XmlSerializer(obj.GetType())).Serialize(xmlWriter, obj, ns);
return textWriter.ToString();
public class AssertionFailedException : System.Exception
public AssertionFailedException() : base() { }
public AssertionFailedException(string s) : base(s) { }
public static class Assert
public static void IsTrue(bool value)
public static void IsTrue(bool value, string message)
throw new AssertionFailedException(message);