mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-24 03:05:30 +00:00
Keep a reference to the file being read.
This commit is contained in:
parent
b4839fd78b
commit
fed983f51f
|
@ -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