AcTools.Kn5File.XmlWriterExtension.WriteElementStringSafe C# (CSharp) 메소드

WriteElementStringSafe() 공개 정적인 메소드

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