private void button1_Click(object sender, EventArgs e) { Investimento calc = new Investimento(); calc.valorAplicado = int.Parse(txtValorAplicado.Text); calc.rendPoupanca = int.Parse(txtJurosPoupanca.Text); calc.rendRendaFixa = int.Parse(txtJurosRendaFixa.Text); calc.quantMeses = int.Parse(txtQuantMeses.Text); calc.JurosPoupanca(); calc.JurosRendaFixa(); calc.ImpostoDeRenda(); calc.TotJurosImposto(); calc.Respostas(); calc.MelhorOpcao(); }