Some basics
fidle on: jdoodle
Imports System
Public Class Test
Shared Sub Main(ByVal args As String())
For Each arg As String In args
Console.WriteLine(arg)
Next arg
Console.ReadLine()
End Sub
End Class
Imports System
Public Class Test
Public Shared Sub Main(EventArgs as String() )
Dim x, y as Integer
x = 10
y = 25
System.Console.WriteLine("Sum of x and y = " & (x+y))
System.Console.WriteLine(EventArgs)
System.Environment.GetCommandLineArgs()
End Sub
End Class
Leave A Comment?