O
Omar Abid
Hi developer,
I'm writing a command line that accept arguments
So i can use it like ping " Ping adressip "
I mean arguments (adressip)
I used the following method
Module Main
Sub main ( Byval args() as string)
Coding...
End sub
The problem that i can't use a string but an array
so if i replace with the following
Sub main (Byval args as string)
Coding..
End sub
an error occured
Any body have an idea
I'm writing a command line that accept arguments
So i can use it like ping " Ping adressip "
I mean arguments (adressip)
I used the following method
Module Main
Sub main ( Byval args() as string)
Coding...
End sub
The problem that i can't use a string but an array
so if i replace with the following
Sub main (Byval args as string)
Coding..
End sub
an error occured
Any body have an idea