How get path to my EXE?

  • Thread starter Thread starter Bill
  • Start date Start date
B

Bill

Is there a better way than

string exePath = Assembly.GetExecutingAssembly().CodeBase;

to get the path to my EXE?
 
Bill said:
Is there a better way than

string exePath = Assembly.GetExecutingAssembly().CodeBase;

to get the path to my EXE?
using System.Windows.Forms ;

u can use Application.ExecutablePath;

HTH.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top