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

◆ WriteLine() [15/20]

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

Reimplemented from System.IO.TextWriter.

Definition at line 544 of file StreamWriter.cs.

545 {
546 if (GetType() == typeof(StreamWriter))
547 {
548 WriteFormatHelper(format, new ParamsArray(arg0, arg1, arg2), appendNewLine: true);
549 }
550 else
551 {
552 base.WriteLine(format, arg0, arg1, arg2);
553 }
554 }
StreamWriter(Stream stream)
void WriteFormatHelper(string format, ParamsArray args, bool appendNewLine)

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