Visual Studio 2010 で入力th
して TAB を 2 回押すと、次のようになります。
Throw New ApplicationException("Exception Occured")
しかし、Visual Studio 2012 で同じことを行うと、次のようになります。
Throw New ArgumentException("Exception Occured")
そのため、IntelliSense の既定の例外の種類が ApplicationException から ArgumentException に変更されました。これはカスタマイズ可能ですか?Visual Studio 2012 の既定の Intellisense 例外の種類を ApplicationException に変更することはできますか?
参考までに、ReSharper / CodeRush / などを使用しないプレーンなバニラ Visual Studio。