Interface IPrettyPrintable<T>
An interface for objects which can render themselves as a Document<T>.
Declaration
public interface IPrettyPrintable<T>
Type Parameters
| Name | Description |
|---|---|
T |
The type of annotations in the resulting Document<T>. |
Methods
PrettyPrint()
Render the current object as a Document<T>.
Declaration
Document<T> PrettyPrint()
Returns
| Type | Description |
|---|---|
Document<T> |
A Document<T> containing a textual representation of the current object. |