.NET C# の try catch 例外エラー サンプル

.NET C# の try catch 例外エラー サンプル
スニペットとして登録しておいておくといいと思います。

            try
            {
                // Your code here ...
            }
            catch (Exception ex)
            {
                logger.Error( ex );
                Debug.WriteLine( "=======================================" );
                Debug.WriteLine( ex.Message );
                Debug.WriteLine( "=======================================" );
                Debug.WriteLine( ex.StackTrace );
                Debug.WriteLine( "=======================================" );
                Debug.WriteLine( "エラーが発生しました" );
                throw;
            }
No.1240
07/26 15:06

edit