ではなくテキストとして値を返すにはどうすればよいvoid
ですか?
例:
private void button1_Click(object sender, EventArgs e)
{
label1.Text = myvoid("foo", true);
// Error: Cannot implicitly convert type void to string
}
public void myvoid(string key , bool data)
{
if (data == true)
{
string a = key + " = true";
MessageBox.Show(a); // How can I export this value to labe1.Text?
}
else
{
string a = key + " = false";
MessageBox.Show(a); // How can I export this value to labe1.Text?
}
}
a
メッセージ ボックスを表示する代わりに、void を返すメソッドから値を割り当てて、それを に適用するにはどうすればよいlabel1.Text
ですか?