Enum ObjectDisplayOptions
Specifies the options for how generics are displayed in the description of a symbol.
Namespace: Loretta.CodeAnalysis
Assembly: cs.temp.dll.dll
Syntax
public enum ObjectDisplayOptions
Fields
| Name | Description |
|---|---|
| EscapeNonPrintableCharacters | Replace non-printable (e.g. control) characters with dedicated (e.g. \t) or unicode (\u0001) escape sequences. |
| EscapeWithUtf8 | Escapes characters using their UTF8 encoding instead of unicode escapes. |
| None | Format object using default options. |
| UseHexadecimalNumbers | Whether or not to display integral literals in hexadecimal. |
| UseQuotes | Whether or not to quote string literals. |