NStub.Core.BuildSystem.GetTextWriter C# (CSharp) Method

GetTextWriter() public method

Returns a writer that stores text in the specified path.
public GetTextWriter ( string path, bool append ) : TextWriter
path string The filename to write data to.
append bool if set to true appends the file.
return System.IO.TextWriter
        public TextWriter GetTextWriter(string path, bool append)
        {
            return new StreamWriter(path, append);
        }