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

◆ WriteLine() [16/20]

override void System.IO.StreamWriter.WriteLine ( string format,
params object?[] arg )
inlinevirtual

Reimplemented from System.IO.TextWriter.

Definition at line 556 of file StreamWriter.cs.

557 {
558 if (GetType() == typeof(StreamWriter))
559 {
560 if (arg == null)
561 {
562 throw new ArgumentNullException("arg");
563 }
564 WriteFormatHelper(format, new ParamsArray(arg), appendNewLine: true);
565 }
566 else
567 {
568 base.WriteLine(format, arg);
569 }
570 }
StreamWriter(Stream stream)
void WriteFormatHelper(string format, ParamsArray args, bool appendNewLine)

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