Keep a reference to the file being read.
This commit is contained in:
parent
fabd5fb470
commit
43b2f2ea9b
1 changed files with 3 additions and 0 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue