VB_0002_Variable2



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

Comments

Popular posts from this blog

VB_0002_Variable3