using System; using System.Collections.Generic; using System.Text; using Microsoft.Win32; namespace SL_Switcher { class OfficialProgram : Program { public OfficialProgram(RegistryKey key, string vendor, string product) : base(key, vendor, product) { } public override string ToString() { return "Official " + this.Name + " by " + this.Provider + ", version " + this.AppVersion; } } }