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

◆ WriteLine() [14/20]

override void System.IO.StreamWriter.WriteLine ( string format,
object? arg0,
object? arg1 )
inlinevirtual

Reimplemented from System.IO.TextWriter.

Definition at line 532 of file StreamWriter.cs.

533 {
534 if (GetType() == typeof(StreamWriter))
535 {
536 WriteFormatHelper(format, new ParamsArray(arg0, arg1), appendNewLine: true);
537 }
538 else
539 {
540 base.WriteLine(format, arg0, arg1);
541 }
542 }
StreamWriter(Stream stream)
void WriteFormatHelper(string format, ParamsArray args, bool appendNewLine)

References System.format, and System.IO.StreamWriter.WriteFormatHelper().