In addition to the answer βMarkβ, you also need to know the area that (as in C / C ++) is indicated using curly braces. So:
if (textBox1.Text == "" || textBox1.Text == String.Empty || textBox1.TextLength == 0) textBox3.Text += "[-] Listbox is Empty!!!!\r\n"; return;
always comes back to this point. However:
if (textBox1.Text == "" || textBox1.Text == String.Empty || textBox1.TextLength == 0) { textBox3.Text += "[-] Listbox is Empty!!!!\r\n"; return; }
will be returned only if it is included in this if .
Smashery Jul 22 2018-10-22T00: 00Z
source share