Module Module1 Sub Main() Dim x As String = "Mathi" Dim y As String = " Krishnan" Dim name As String = x & y Console.WriteLine(name) Console.ReadLine() End Sub End Module
Module Module1 Sub Main() Dim x As String = "Mathi" Dim y As String = " Krishnan" Dim name As String = x.ToUpper & y.ToUpper Console.WriteLine(name) Console.ReadLine() End Sub End Module
Comments
Post a Comment