How do I get the path of the current assembly? I need to get data from some paths relative to the location of hte current assembly (.dll).
I thought someone told me to use the reflection namespace but I can't find anything in there.
Thanks, Scott
How do I get the path of the current assembly? I need to get data from some paths relative to the location of hte current assembly (.dll).
I thought someone told me to use the reflection namespace but I can't find anything in there.
Thanks, Scott
You can use:
string path = (new System.Uri(Assembly.GetExecutingAssembly.CodeBase)).AbsolutePath;