Contact: aviboots(AT)netvision.net.il
41,379 questions
53,922 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