I have a VB.net console application with command line arguments.
Like ("-Arg1=Value1 -Arg2=Value2 -Arg3="Value 3")
this i'm passing arguments from project properties -> Debug ->Command line arguments.
My plan is to run this console application from batch(.bat) file. I can able to run like this.
@echo off
D:\Project\Bin\Debug\abc.exe %* -Arg1=Value1 -Arg2=Value2 -Arg3="Value 3"
But my expectation is while running console application it need to ask values for
-Arg1, -Arg2 & -Arg3
I need to pass values at run time.