.emacs.d/snippets/csharp-mode/try

12 lines
145 B
Plaintext
Raw Normal View History

2024-01-20 09:04:12 +00:00
# -*- mode: csharp -*-
# name: try
# key: t
# --
try
{
$0
}
catch (${1:Exception} ${2:ex})
{
${3:System.Console.WriteLine(ex.Message);}
}