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

◆ Write() [14/19]

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

Reimplemented from System.IO.TextWriter.

Definition at line 492 of file StreamWriter.cs.

493 {
494 if (GetType() == typeof(StreamWriter))
495 {
496 WriteFormatHelper(format, new ParamsArray(arg0, arg1, arg2), appendNewLine: false);
497 }
498 else
499 {
500 base.Write(format, arg0, arg1, arg2);
501 }
502 }
StreamWriter(Stream stream)
void WriteFormatHelper(string format, ParamsArray args, bool appendNewLine)

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