Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| // 'using' statement | |
| // if you don't need access to the CancellationTokenRegistration | |
| await using (cancellationToken.Register(() => buildManager.CancelAllSubmissions()).ConfigureAwait(false)) | |
| { | |
| // disposed outside this scope | |
| } | |
| // 'using' statement | |
| // if you need access to the CancellationTokenRegistration | |
| var test = cancellationToken.Register(() => buildManager.CancelAllSubmissions()); |
| // ----------------------------------------------------------------------------- | |
| // Azure RG Janitor - Spectre Edition | |
| // Run with: dotnet run cleanup-rg.cs | |
| // Targets: .NET 10 Preview 4+ | |
| // ----------------------------------------------------------------------------- | |
| #:package Azure.Identity@1.* | |
| #:package Azure.ResourceManager@1.* | |
| #:package Spectre.Console@0.50.0 |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| namespace TopologicalSort { | |
| static class Program { | |
| static void Main() { | |
| // | |
| // digraph G { | |
| // "7" -> "11" |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |