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

◆ InternalWriteAllLines()

static void System.IO.File.InternalWriteAllLines ( TextWriter writer,
IEnumerable< string > contents )
inlinestaticprivate

Definition at line 482 of file File.cs.

483 {
484 using (writer)
485 {
486 foreach (string content in contents)
487 {
488 writer.WriteLine(content);
489 }
490 }
491 }

References System.writer.

Referenced by System.IO.File.AppendAllLines(), System.IO.File.AppendAllLines(), System.IO.File.WriteAllLines(), and System.IO.File.WriteAllLines().