Is there any difference between these two "if" conditional statement?
- by Pandiya Chendur
First if condition
if(Txt1.Text != "" && Txt2.Text != "")
Second if condition
if((Txt1.Text && Txt2.Text) != "")
Is there any diff between these two conditional statement?