次のコードを見たばかりですが、コンストラクター宣言での基本クラスの派生がわかりません。これは何ですか?これは通常の方法で可能ですか?
public SplashAppContext(Form mainForm, Form splashForm) : base(splashForm)
{
this.mainForm = mainForm;
splashTimer.Tick += new EventHandler(SplashTimeUp);
splashTimer.Interval = 2000;
splashTimer.Enabled = true;
}