3
I have a Console Application that method main
of Program.Cs (where the application starts) receives a input.
Follows code below:
static void Main(string[] args)
{
var input = Console.ReadLine();
ControleEstado.IniciaControle(input);
Console.WriteLine();
Console.WriteLine("Press any key to exit...");
Console.ReadKey();
}
I need to create a file batch to execute this application but send the expected parameter in the variable input.
It worked! Thank you!!!
– Arthur Menezes