Contact: aviboots(AT)netvision.net.il
42,187 questions
54,895 answers
573 users
Module Module1 Sub Main() Dim a As Integer = 12, b As Integer = 20 Dim c As String = If(a > b, a, b) Console.WriteLine(c) End Sub End Module ' run: ' ' 20