是否可以自定义用Surround with编写的代码?

时间:2019-05-03 10:47:18

标签: settings configure surround

我需要知道是否可以自定义使用“环绕”功能生成的代码。

我一直在搜索,但是找不到解决方法。

Surround With中的“ Try”生成

try
{

}
catch (Exception)
{
    throw;
}

我需要生成这个

try
{

}
catch (Exception ex)
{
    HandleException(ex);
}
finally
{

}

每次我在“环绕声”中选择“尝试”

0 个答案:

没有答案