質問

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

役に立ちましたか?

解決

&& 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.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top