开发者

Change Default Try-Catch Variable Name VB.NET 2010

开发者 https://www.devze.com 2023-03-21 15:48 出处:网络
I was wondering if it was possible to change the default variable name that shows up in the auto-complete for a Try-Catch block. It populates as:

I was wondering if it was possible to change the default variable name that shows up in the auto-complete for a Try-Catch block. It populates as:

Try

Catch ex As Except开发者_运维百科ion

End Try

I want it so it populates as:

Try

Catch excError As Exception

End Try


You can do so using Code Snippets... http://dotnet.dzone.com/news/code-snippets-visual-studio

0

精彩评论

暂无评论...
验证码 换一张
取 消