public void Dispose() { if (this.mSplash != null) { if (this.bStarted) { this.End(); } this.mSplash.Dispose(); this.mSplash = null; } }
public SplashLauncher() { this.bStarted = false; this.mSplash = new Splash("Starting " + MainForm.kName); }