Keep a reference to the file being read.

This commit is contained in:
the_fiddler 2010-12-06 22:32:11 +00:00
parent fabd5fb470
commit 43b2f2ea9b

View file

@ -18,9 +18,12 @@ namespace Bind
Regex splitLines = new Regex(Environment.NewLine, RegexOptions.Compiled);
//Regex splitLines = new Regex("(\r\n|\n\r|\n|\r)", RegexOptions.Compiled);
public readonly string File;
public BindStreamWriter(string file)
: base(file)
{
File = file;
}
public void Indent()