diff --git a/ICD.Common.Utils/Xml/IcdXmlTextWriter.cs b/ICD.Common.Utils/Xml/IcdXmlTextWriter.cs index 3a1814d..6a1536f 100644 --- a/ICD.Common.Utils/Xml/IcdXmlTextWriter.cs +++ b/ICD.Common.Utils/Xml/IcdXmlTextWriter.cs @@ -90,6 +90,11 @@ namespace ICD.Common.Utils.Xml m_Writer.WriteComment(comment); } + public void WriteValue(object value) + { + m_Writer.WriteValue(value); + } + public void Dispose() { #if SIMPLSHARP