Is there any diff between these two "if" conditional statement?
        Posted  
        
            by Pandiya Chendur
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Pandiya Chendur
        
        
        
        Published on 2010-05-22T03:56:40Z
        Indexed on 
            2010/05/22
            4:10 UTC
        
        
        Read the original article
        Hit count: 293
        
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?
© Stack Overflow or respective owner