Question

*Also, does the And operator already acts like an AndAlso, or both exists in a different way?

Was it helpful?

Solution

&& is the short-circuiting logical "And" operator, so it is equivalent of AndAlso in VB. & is bitwise "And" and does not short-circuit, so it is equivalent to And in VB.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top