Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


StringOutput

Creates a new instance of StringOutput.
Read time 1 minuteLast updated 6 days ago

Definition

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

capacity

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.