在派生类构造函数之后调用基类方法

时间:2015-01-22 13:58:24

标签: c#

我有以下课程:

class ClBase{

 public ClBase(){/*do stuff..*/}

 protected postConstructorMethod(){ /*do same stuff for all derived classes*/}

}

class ClInherited:ClBase{

 public ClInherited():base(){/*do stuff..*/}

}

创建派生类后我需要做一些事情。 有没有办法在派生类构造函数之后调用“postconstructorMethod()”?

提前致谢。

1 个答案:

答案 0 :(得分:2)

请致电:

base.postConstructorMethod();

来自ClInherited类的