有没有更好的方法可以在同一个类中的每个其他方法之后调用一个方法?

时间:2019-08-13 11:21:36

标签: c#

我有一个包含多个方法的类,每次调用任何方法后,我都想调用另一个方法,但是不想从每个其他方法中专门调用它。

我尝试使用IDisposable并在此调用此方法,但它似乎无法按预期工作。

public class A
{

    public void DoSomething1()
    {
        // some code here
        MyMethod();
    }

    public void DoSomething2()
    {
        // some code here
        MyMethod();
    }

    //-----------------------

    public void DoSomething99()
    {
        // some code here
        MyMethod();
    }

}

我希望在调用类中的任何其他方法之后调用MyMethod()。

0 个答案:

没有答案