yasnippet-snippets/snippets/csharp-mode/trycatch

13 lines
220 B
Plaintext

# -*- mode: snippet -*-
# contributor : Frede Brændstrup <frederikbraendstrup@gmail.com>
# name: try{...} catch (ex) {...}
# key: tc
# --
try
{
$0
}
catch (${1:Exception} ex)
{
${2:Console.WriteLine(ex.ToString());}
}