我有一个这样的事件处理方法:
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
}
问题是 return 不仅打破了方法,而且还打破了整个形式。我可以忍受这个,但这不是最好的解决方案。有没有其他方法可以解决这个问题?