I have a dll written in VB and I'm trying to do something like this:
VB Code:
  1. Assembly a = Assembly.LoadFrom("my_dll.dll");
  2. foreach (Type t in a.GetTypes())
  3. {
  4.     ...
  5. }
and for some reason it never goes through that foreach.
Do you have any suggestions? Thank you.