2
Answers

Application.ExecutablePath in console

Hello everyone
I am working on a console application in c# that i need to be restart itself after doing some work. as in windows form there is a function Application.ExecutablePath, this can be used to get the full path of the executable path but I cannot find any such in console.
 
please suggest something.
 
Thanks
Devendra 
Answers (2)
3
Amit Gupta

Amit Gupta

NA 16.5k 25.7k 7y
You can use reference of System.Windows.Forms.dll in your console application project to call Application.ExecutablePath.
 
Well there are many other ways to get the executable path, if you don't want to take reference then you can use
 
 
Assembly.GetExecutingAssembly().CodeBase; 
// Include System.Reflection in your namespace.
 
Good Luck !! 
Accepted
1
Devendra Kumar

Devendra Kumar

NA 264 11.9k 7y
Works great .Thanku sir