R
Robert Dobson
In Java you can execute a single class from the command line using the
command:
java.exe <classname> [args...]
As long as the class in question has a method declared as "public static
final main( String[] args )"
How might I execute a Visual Basic .Net class from the command line
*without* building it as a separate "console" project?
Thanks.
command:
java.exe <classname> [args...]
As long as the class in question has a method declared as "public static
final main( String[] args )"
How might I execute a Visual Basic .Net class from the command line
*without* building it as a separate "console" project?
Thanks.