mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-03-30 08:36:55 +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(Environment.NewLine, RegexOptions.Compiled);
|
||||||
//Regex splitLines = new Regex("(\r\n|\n\r|\n|\r)", RegexOptions.Compiled);
|
//Regex splitLines = new Regex("(\r\n|\n\r|\n|\r)", RegexOptions.Compiled);
|
||||||
|
|
||||||
|
public readonly string File;
|
||||||
|
|
||||||
public BindStreamWriter(string file)
|
public BindStreamWriter(string file)
|
||||||
: base(file)
|
: base(file)
|
||||||
{
|
{
|
||||||
|
File = file;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Indent()
|
public void Indent()
|
||||||
|
|
Loading…
Reference in a new issue