TranslateTool.PoWriter.PoWriter C# (CSharp) Method

PoWriter() public method

public PoWriter ( string outputFilename, PoWriterAttributes attributes ) : System
outputFilename string
attributes PoWriterAttributes
return System
        public PoWriter(string outputFilename, PoWriterAttributes attributes)
        {
            this.attributes = attributes;
            writer = new StreamWriter(outputFilename, false, new UTF8Encoding(false));
            writer.NewLine = "\n";         // use UNIX style newlines.
        }