I already know the Answer but i am just curious to see how well known this fact is about the VB compiler.

If i write this code 2 different ways which will be faster once it's compiled?


A)
VB Code:
  1. If iConditionOne < 1 Then
  2.   If iConditionTwo < 20 Then
  3.       'DoSomething
  4.   End if
  5. End if

B)
VB Code:
  1. If iConditionOne < 1 And iConditionTwo < 20 Then 'DoSomething