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
精彩评论