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

◆ OpenText()

static StreamReader System.IO.File.OpenText ( string path)
inlinestatic

Definition at line 20 of file File.cs.

21 {
22 if (path == null)
23 {
24 throw new ArgumentNullException("path");
25 }
26 return new StreamReader(path);
27 }