AcTools.Kn5File.XmlWriterExtension.WriteElementStringSafe C# (CSharp) Method

WriteElementStringSafe() public static method

public static WriteElementStringSafe ( this xml, string key, string value ) : void
xml this
key string
value string
return void
        public static void WriteElementStringSafe(this XmlWriter xml, string key, string value){
            xml.WriteElementString(key, RemoveInvalidXmlChars(value));
        }