determine if an assembly is debug or not.

  • Thread starter Thread starter Jeremy
  • Start date Start date
J

Jeremy

I've loaded an assembly using
System.Reflection.AssemblyName.GetAssemblyName(), and I'd like to determine
if the assembly has been built with debugging on or not. Is this possible?
 
Thanks!

Unfortunately I could be checking different versions of the same assembly,
and because the load methods load the assembly into the app domain, I get an
error if I try to load the second version of the assembly into the app
domain.
 
Back
Top