Class Console
Static class for Console related operations. Provides Write(byte*, int, byte), Write(ref FixedString512Bytes) and Write(ref FixedString4096Bytes) for low-level writing to the Console. Use BeginBatch() and EndBatch() when you need to write a lot of data in a batch.
Inherited Members
Namespace: Unity.Logging
Assembly: solution.dll
Syntax
public static class Console
Methods
Name | Description |
---|---|
BeginBatch() | Call this before writing a lot of data to the console. Disables flush behaviour on every end-of-line |
EndBatch() | Call this after BeginBatch() Restores flush behaviour on every end-of-line |
Flush() | Flush internal buffer to the console |
Write(byte*, int, byte) | Unsafe method for writing data to the console |
Write(ref FixedString4096Bytes) | Writes FixedString to the console |
Write(ref FixedString512Bytes) | Writes FixedString to the console |