extensive type search

  • Thread starter Thread starter Lloyd Dupont
  • Start date Start date
L

Lloyd Dupont

I want to search a type by name.
Type.Get(string)
only return those from a limited set (the current one?)

I was thinking to use
anAssembly.GetReferencedAssemblies ()

but does it return all loaded assembly or should I call again recursively
GetReferencedAssemblies () on the returned assembly (until no new assemblky
is found) ?
 
don't worry, I found THE solution:
Assembly[] loaded = AppDomain.CurrentDomain.GetAssemblies();
 
Back
Top