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

◆ Write() [13/19]

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

Reimplemented from System.IO.TextWriter.

Definition at line 480 of file StreamWriter.cs.

481 {
482 if (GetType() == typeof(StreamWriter))
483 {
484 WriteFormatHelper(format, new ParamsArray(arg0, arg1), appendNewLine: false);
485 }
486 else
487 {
488 base.Write(format, arg0, arg1);
489 }
490 }
StreamWriter(Stream stream)
void WriteFormatHelper(string format, ParamsArray args, bool appendNewLine)

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