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




Reply With Quote