public static void Main()
<d10>2019-10-15 13:29:07.000</d10>
XmlDocument doc = new XmlDocument();
string jsontest = JsonConvert.SerializeXmlNode(doc);
Console.WriteLine(jsontest);
Informations bob = JsonConvert.DeserializeObject<Informations>(jsontest);
Console.WriteLine("d1: " + bob.GetInformation.d1);
Console.WriteLine("d2: " + bob.GetInformation.d2);
Console.WriteLine("d3: " + bob.GetInformation.d3);
Console.WriteLine("d4: " + bob.GetInformation.d4);
Console.WriteLine("d5: " + bob.GetInformation.d5);
Console.WriteLine("d6: " + bob.GetInformation.d6);
Console.WriteLine("d7: " + bob.GetInformation.d7);
Console.WriteLine("d8: " + bob.GetInformation.d8);
Console.WriteLine("d9: " + bob.GetInformation.d9);
Console.WriteLine("d10: " + bob.GetInformation.d10);
public string d1 { get; set; }
public string d2 { get; set; }
public string d3 { get; set; }
public string d4 { get; set; }
public string d5 { get; set; }
public string d6 { get; set; }
public string d7 { get; set; }
public string d8 { get; set; }
public string d9 { get; set; }
public string d10 { get; set; }
public class Informations
public Data GetInformation { get; set; }