using System.Collections.Generic;
using System.Xml.Serialization;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Binary;
using System.IO.Compression;
using System.Globalization;
[XmlElement(typeof(NullableDateTimeXmlSurrogate))]
public DateTime? DateUpdated { get; set; }
public struct NullableDateTimeXmlSurrogate
public DateTime? DateTime { get; set; }
public string DateTimeString
get { return DateTime.HasValue ? " " + DateTime.Value.ToString("yyyy-MM-ddTHH:mm:ss") : null; }
if (!string.IsNullOrWhiteSpace(value))
DateTime = System.DateTime.Parse(value, CultureInfo.InvariantCulture);
public static implicit operator NullableDateTimeXmlSurrogate(DateTime? dateTime)
return new NullableDateTimeXmlSurrogate { DateTime = dateTime };
public static implicit operator DateTime?(NullableDateTimeXmlSurrogate surrogate)
return surrogate.DateTime;
public static void Test()
var root = new RootObject { DateUpdated = DateTime.Now };
var root2 = xml.LoadFromXml<RootObject>();
Assert.IsTrue(root.DateUpdated.GetValueOrDefault().Date == root2.DateUpdated.GetValueOrDefault().Date);
public static class XmlSerializationHelper
public static T LoadFromXml<T>(this string xmlString, XmlSerializer serial = null)
serial = serial ?? new XmlSerializer(typeof(T));
using (var reader = new StringReader(xmlString))
return (T)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 static string GetOuterXml(this XmlNode node, bool indent = true)
using (var textWriter = new StringWriter())
var settings = new XmlWriterSettings
OmitXmlDeclaration = true,
using (var xmlWriter = XmlWriter.Create(textWriter, settings))
return textWriter.ToString();
public static class XmlAssert
public static void AreEqual(
Assert.IsTrue(XNode.DeepEquals(Normalize(expected), Normalize(actual)));
private static XElement Normalize(XElement element)
.OrderBy(a => a.Name.ToString()),
.OrderBy(a => a.Name.ToString())
.Select(e => Normalize(e)));
.OrderBy(a => a.Name.ToString()));
return new XElement(element.Name, element.Attributes()
.OrderBy(a => a.Name.ToString()), element.Value);
public static void Main()
Console.WriteLine("Roslyn 2.0 Compiler; Environment version: " + Environment.Version);
Console.WriteLine("Uncaught exception: ");