How to know DLL path from itself

  • Thread starter Thread starter Doudou
  • Start date Start date
D

Doudou

Hello,

I would like to retrieve the full path of a DLL assembly from code in
itself (in a specific class) - something like the
Application.StartupPath in an EXE assembly ?
Is it possible ?

Thanks in advance for your help
Stephane
 
Doudou said:
I would like to retrieve the full path of a DLL assembly from code in
itself (in a specific class) - something like the
Application.StartupPath in an EXE assembly ?
Is it possible ?
Assembly.GetExecutingAssembly().Location.
 
Back
Top