Just use dnspy
private void button1_Click(object sender, EventArgs e)
{
string text = this.name.Text;
string text2 = this.pass.Text;
bool flag = string.IsNullOrEmpty(text);
if (flag)
{
MessageBox.Show("The name field is empty. Please enter a name.", "Validation Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
bool flag2 = text2.Length |
==> |