Skip to content

Instantly share code, notes, and snippets.

@AnthonyGiretti
Created April 6, 2025 22:20
Show Gist options
  • Save AnthonyGiretti/af4723193b4eae25312096884820290f to your computer and use it in GitHub Desktop.
Save AnthonyGiretti/af4723193b4eae25312096884820290f to your computer and use it in GitHub Desktop.
Before and with C# 13 escape sequence
// Before C# 13
Console.WriteLine("\u001b[31mThis is red text\u001b[0m");
// With C# 13
Console.WriteLine("\e[31mThis is red text\e[0m");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment