ModuleModule1 Sub Main() Dim names() As String = {"MATHI", "SUJITHRA", "SURAJ", "SHAKTHI"} For Each name As StringIn names Console.WriteLine(name) Next 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