What does this code do ?
Posted
Thu, Jun 29 2006 3:27
by
bill
Will the following VB code display True or False ? Why ?
(and no cheating by actually trying the code and decompiling it)
Option Strict Off
Module Module1
Sub Main()
If 2 < 1 < 5 Then
MsgBox("true")
Else
MsgBox("false")
End If
End Sub
End Module