StringOutput
Creates a new instance of StringOutput.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Constructor
- Namespace: Unity.SmartStrings.Core.Output
- Assembly: UnityEngine.SmartStringsModule
StringOutput()
Creates a new instance of StringOutput.
public StringOutput()
StringOutput(int)
Creates a new instance of StringOutput with the given capacity.
public StringOutput(int capacity)
Parameters
The estimated capacity for the result string. Essential for performance and GC pressure.
StringOutput(StringBuilder)
Creates a new instance of StringOutput using the given StringBuilder.
public StringOutput(StringBuilder output)
Parameters
Existing StringBuilder to append output to.