Any "app.Path" function in dotnet

  • Thread starter Thread starter awan
  • Start date Start date
A

awan

Is there a function in dotnet which is equivalent as "app.Path" in VB 6?

Thanks in advance!
 
I can only make it work in vb executable. How can I make it work in
class/dll project? Thanks again.
 
Assembly.GetExecutingAssembly().Location

or

Assembly.GetExecutingAssembly().Codebase
 
Back
Top