我刚刚看到以下代码,但我不明白构造函数声明中基类的派生。这是什么,这可能与序数方法吗?
public SplashAppContext(Form mainForm, Form splashForm) : base(splashForm)
{
this.mainForm = mainForm;
splashTimer.Tick += new EventHandler(SplashTimeUp);
splashTimer.Interval = 2000;
splashTimer.Enabled = true;
}