NStub.CSharp.Tests.FakeBuildSystem.GetTextWriter C# (CSharp) Method

GetTextWriter() public method

public GetTextWriter ( string path, bool append ) : System.IO.TextWriter
path string
append bool
return System.IO.TextWriter
        public System.IO.TextWriter GetTextWriter(string path, bool append)
        {
            var ms = new System.IO.MemoryStream();
            return new System.IO.StreamWriter(ms);
        }