I have a console application in which I want to write a file name.
Process.Start("blah.bat");
Normally, I would have 'blah.bat' something like this in a Windows application by writing the file name 'blah.bat' to the Settings file in Properties .
However, I did not find any settings file here and added app.config for the same purpose.
I'm not sure what to write here in app.config , which would lead me to achieve the same as in Windows Forms .
For example: in form windows. Process.Start(Properties.Settings.Default.BatchFile);
where BatchFile is a line in the settings file in Properties.
c # console
user1240679 Apr 09 2018-12-12T00: 00Z
source share