csharp 异常冒泡到第一个在链中调用方法的方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 异常冒泡到第一个在链中调用方法的方法相关的知识,希望对你有一定的参考价值。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ExceptionHandling
{
    class Program
    {
        static void Main(string[] args)
        {
            try
            {
                MethodA();
            }
            catch (Exception ex)    // catches exception thats passed by methodB to methodA to Main
            {
                
                Console.WriteLine(ex.StackTrace);
            }
            Console.Read();
        }

        static void MethodA()
        {
            try
            {
                MethodB();
            }
            catch (Exception)   // this exception was thrown by MethodB
            {
                
                throw;      //throws catched exception that bubbles up to the method that called this method.
            }
        }

        static void MethodB()
        {
            try
            {
                throw new Exception();        //raises exception
            }
            catch (Exception)
            {
                
                throw;   //again throws exception but bubbles up to the method that called it.
            }
        }
    }
}

以上是关于csharp 异常冒泡到第一个在链中调用方法的方法的主要内容,如果未能解决你的问题,请参考以下文章

PromiseKit 无法在链中命中

jQuery - 在链中使用上下文?

r data.table 围绕 ad-hoc 连接的函数包装器(在链中聚合)

在链中执行 MSI 文件时,如何阻止 WiX 传递 ARPSYSTEMCOMPONENT="1"?

LINQ 和内存分配

如何处理 Perl 方法链中的错误?