static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Master master = new Master(); Slave slave = new Slave(master); master.saveReference(slave); Application.Run(new MultiFormContext(master, slave)); }
public void saveReference(Slave slave) { referencedSlave = slave; }