public static StringMaker Small;
Description
Used to create small strings.
public static StringMaker Medium;
Description
Use this when creating medium-length strings.
public static StringMaker Large;
Description
Used to create large-sized strings.
public override string ToString();
Description
Gets the string created by StringMaker.
public StringMaker Clear();
Description
Clear the string buffer.
public class Sample : MonoBehaviour { void Awake() { string str = StringMaker.small + "Hello" + "World, " + 10 + ", " + 1.0f; } }