Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| var cancellationTokenSource = new CancellationTokenSource(); | |
| var cancellationToken = cancellationTokenSource.Token; | |
| Task.Delay(2000).ContinueWith(async (t) => | |
| { | |
| //Do stuff | |
| }, cancellationToken); |