Class StaticSBNoThread
- Namespace
- SunamoTextOutputGenerator
- Assembly
- SunamoTextOutputGenerator.dll
Static non-thread-safe StringBuilder wrapper for simple text accumulation.
public class StaticSBNoThread
- Inheritance
-
StaticSBNoThread
- Inherited Members
- Extension Methods
Properties
Builder
Gets the shared StringBuilder instance.
public static StringBuilder Builder { get; }
Property Value
Methods
Append(string)
Appends text to the builder.
public static void Append(string text)
Parameters
textstringThe text to append.
Clear()
Clears all accumulated text.
public static void Clear()
ToString()
Returns all accumulated text as a string.
public static string ToString()
Returns
- string
The accumulated text.