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

◆ Write() [12/19]

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

Reimplemented from System.IO.TextWriter.

Definition at line 468 of file StreamWriter.cs.

469 {
470 if (GetType() == typeof(StreamWriter))
471 {
472 WriteFormatHelper(format, new ParamsArray(arg0), appendNewLine: false);
473 }
474 else
475 {
476 base.Write(format, arg0);
477 }
478 }
StreamWriter(Stream stream)
void WriteFormatHelper(string format, ParamsArray args, bool appendNewLine)

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