Reko.Core.Services.FileSystemServiceImpl.CreateXmlWriter C# (CSharp) Method

CreateXmlWriter() public method

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