VB_0002_Variable1 Get link Facebook X Pinterest Email Other Apps November 18, 2018 Module Module1 Sub Main() Dim x As Integer = 7 Dim y As Integer = 3 Dim z As Integer = x + y Console.WriteLine(z) Console.ReadLine() End Sub End Module Get link Facebook X Pinterest Email Other Apps Comments
VB_0001_HelloWorld November 18, 2018 Module Module1 Sub Main() Console.WriteLine( "Hello World!" ) Console.ReadLine() End Sub End Module Read more
VB_0002_Variable3 November 18, 2018 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 Read more
Comments
Post a Comment