Those who use C# in VS Code can change the cw
snippet from System.Console.WriteLine();
to Console.WriteLine();
by creating or overriding a custom snippet.
- Open Command Palette →
Preferences: Configure User Snippets
- Choose either C# (for project-only) or New Global Snippets file (for all projects).
- Add this snippet:
{
"Console WriteLine": {
"prefix": "cw",
"body": ["Console.WriteLine($1);"],