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

◆ ReadLines() [1/2]

static IEnumerable< string > System.IO.File.ReadLines ( string path)
inlinestatic

Definition at line 404 of file File.cs.

405 {
406 if (path == null)
407 {
408 throw new ArgumentNullException("path");
409 }
410 if (path.Length == 0)
411 {
412 throw new ArgumentException(SR.Argument_EmptyPath, "path");
413 }
414 return ReadLinesIterator.CreateIterator(path, Encoding.UTF8);
415 }
static Encoding UTF8
Definition Encoding.cs:526

References System.SR.Argument_EmptyPath, System.IO.ReadLinesIterator.CreateIterator(), and System.Text.Encoding.UTF8.