こんにちは、私はまったく新しいので、初心者の質問を厳しく判断しないでください。
namespace Oef5_3_ShowIncome
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Button_Click(object sender, EventArgs e)
{
int YearSalary = Convert.ToInt32(YearSalaryTextBox.Text);
int numberOfYears = Convert.ToInt32(numberOfYearsTextBox.Text);
ShowIncome(YearSalary, numberOfYears);
MessageBox.Show("something something ", Convert.ToString(ShowIncome)));
}
private int ShowIncome(int lalala, int dadada)
{
int results = lalala * dadada;
return results;
}
}
}
in... MessageBox.Show("何か何か" Convert.ToString(ShowIncome))); 次のエラーが表示されます: windows.form.messagebox.show(string, string) に一致する最適なオーバーロードされたメソッドには無効な引数があります。