# -*- 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());}
|
|
}
|