} // My Label public void UpdateLabels() { // set my label to my bets description, and the label on my MyBet.Betton = this; MyLabel.Text = MyBet.GetDescription(); // radio button to show my cash (" joe has 43 bucks") MyRadioButton.Text = Name + " has €" + Cash; }
public void UpDateLabels() { MyLabel.Text = MyBet.GetDescription(); MyRadioButton.Text = Name + "has" + Cash + "Bucks"; }
public void UpdateLabels() { MyLabel.Text = MyBet.GetDescription(); MyRadioButton.Text = Name + " has $" + Cash; }