VB_0002_Variable4
Module Module1
Sub Main()
Dim x As String = "Mathi"
Dim y As Integer = 39
'CStr and CInt are for Convert to String and Convert to Integer
Dim name As String = x & CStr(y)
Console.WriteLine(name)
Console.ReadLine()
End Sub
End Module
Comments
Post a Comment