Class ControlCharacter
Defines a list of special control characters in ASCII.
Inherited Members
Namespace: Sharpie
Assembly: sharpie.dll
Syntax
public static class ControlCharacter
Fields
Escape
The escape character.
Declaration
public const char Escape = '\u001b'
Field Value
Type | Description |
---|---|
char |
NewLine
The new line character.
Declaration
public const char NewLine = '\n'
Field Value
Type | Description |
---|---|
char |
Null
The null character.
Declaration
public const char Null = '\0'
Field Value
Type | Description |
---|---|
char |
Tab
The tab character.
Declaration
public const char Tab = '\t'
Field Value
Type | Description |
---|---|
char |
Whitespace
The whitespace character.
Declaration
public const char Whitespace = ' '
Field Value
Type | Description |
---|---|
char |