Are the two following If statements equivalent?
If A = 5 And B = 5 And C = 5 Then
'Do something
End
If A = B = C Then
'Do something
End
If A = 5 And B = 5 And C = 5 Then
'Do something
End
If A = B = C Then
'Do something
End