Hello,
I have a C# application with many DLL's. The application implements a plugin architecture allowing another programmer to write a plug in and drop the resulting DLL into the "plugins" directory of my application. I am having some problems with the references of these DLL's. Currently, with certain DLL's, when I called Assembly.LoadFi le, then Assembly.GetExp ortedTypes on the loaded assembly, I get an error...
User Profile
Collapse
-
Assemblies and references
-
You are on the right lines. However, the problem is that when you retrieve your String[] from your ArrayList using the .get(index) method, your String[] will be returned as an Object. If you are using an IDE like Eclipse or NetBeans it should tell you the type of the object that is being returned.
You have two options to solve this problem;
1. Cast the object being returned back to a String[].
So for...
No activity results to display
Show More
Leave a comment: