private void button3_Click(object sender, EventArgs e) { Elephant tmp; tmp = lucinda; lucinda = lloyd; lloyd = tmp; MessageBox.Show("Objects swapped"); }
public void TellMe(string message, Elephant whoSaidIt) { MessageBox.Show(whoSaidIt.Name + " says: " + message); }
public void SpeakTo(Elephant whoTOTalkTo, string message) { whoTOTalkTo.TellMe(message, this); }
public Form1() { InitializeComponent(); lucinda = new Elephant() { Name = "Lucinda", EarSize = 33 }; lloyd = new Elephant() { Name = "Lloyd", EarSize = 40 }; }