Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
StringOutput.cs
Go to the documentation of this file.
1using System.Text;
2
4
5internal sealed class StringOutput : SequentialOutput
6{
7 private readonly StringBuilder _builder;
8
9 private string _result;
10
11 internal string Result => _result;
12
15 {
16 _builder = new StringBuilder();
17 }
18
19 internal override void Write(char outputChar)
20 {
22 }
23
24 internal override void Write(string outputText)
25 {
27 }
28
29 internal override void Close()
30 {
32 }
33}
override string ToString()
StringBuilder Append(char value, int repeatCount)
override void Write(char outputChar)
override void Write(string outputText)
StringOutput(Processor processor)
readonly StringBuilder _builder