I was wondering some about if statements. So if I had the following:
If A
//Lots of code
End
If B
//More
End
Would that be faster than:
If A
Then
Code
Else:If B
Then
Code
End
End
Also is the speed of a false if statement dependant on the length of the code it contains (long code takes longer) or is it not related