Reko.Core.Services.FileSystemServiceImpl.CreateXmlWriter C# (CSharp) 메소드

CreateXmlWriter() 공개 메소드

public CreateXmlWriter ( string filename ) : XmlWriter
filename string
리턴 System.Xml.XmlWriter
        public XmlWriter CreateXmlWriter(string filename)
        {
            return new XmlTextWriter(filename, new UTF8Encoding(false))
            {
                Formatting = Formatting.Indented
            };
        }