私はこのようなイベント処理メソッドを持っています:
private void btnConfirm_Click(object sender, EventArgs e)
{
//Some code
if (int.TryParse(tboxPhone.Text, out n))
{
korisnik.Phone = n;
command.Parameters.AddWithValue("@phone", korisnik.Phone);
}
else
{
MessageBox.Show("Error. Numerals only!");
return;
}
//Some other code if condition is fulfilled
}
問題は、メソッドからのブレークだけでなく、フォーム全体を返すことです。私はこれで生きることができましたが、それは最善の解決策ではありません。これを解決する他の方法はありますか?