Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ InternalReadAllText()

static string System.IO.File.InternalReadAllText ( string path,
Encoding encoding )
inlinestaticprivate

Definition at line 276 of file File.cs.

277 {
278 using StreamReader streamReader = new StreamReader(path, encoding, detectEncodingFromByteOrderMarks: true);
279 return streamReader.ReadToEnd();
280 }

Referenced by System.IO.File.ReadAllText(), and System.IO.File.ReadAllText().