I have referred What is the difference between And and AndAlso in VB.net? to understand the difference between And
and AndAlso
.
I am from C# background - and C# has AndAlso
only - no And
.. And I don't see any practical use/advnatage of And
.
Is there any practical use of And
in VB.Net?
Reference
AndAlso
in the form of&&
and the non short circuitingAnd
in the form of&
. – CodesInChaos Jul 01 '14 at 17:01