How to tell an assembly is loaded

  • Thread starter Thread starter Chris Bordeman
  • Start date Start date
C

Chris Bordeman

How can I tell an assembly is loaded? I want to avoid redundant
Assembly.LoadFrom(..) calls.
 
After it's called the first time it shouldn't need to be called again on
that dll.
 
mmm, but, if you call it to be loaded onto appdomain it lives they until
the domain lives. what is the issue to load it there every time?

Regards, Alex
[TechBlog] http://devkids.blogspot.com

CB> After it's called the first time it shouldn't need to be called
CB> again on that dll.
CB>
CB> CB>
Hi Chris,

Why do you think that Assembly.LoadFrom(..) is redundant for your
task? How do u expect it to be loaded?

Regards, Alex
[TechBlog] http://devkids.blogspot.com
CB> redundant
CB
 
Back
Top