finding Source from dll

  • Thread starter Thread starter MAF
  • Start date Start date
M

MAF

Inside of code is there anyway to find the location of the source code from
within the compiled dll?
 
MAF,

If the assembly is compiled in DEBUG mode, then the full path to the
source, as well as the source itself is included in the assembly. You will
have to use another program to get this information though, since reflection
doesn't provide the means to read this info.

Hope this helps.
 
Yes but I want to be able to get it from code, does anyone know how to get
this information in code?
 
Back
Top