Search Results

0
votes
2answers
139 views

How can you cast objects from different assemblies into each other?

I've run into this apparently not uncommon problem -- I have a interface in Assembly A. I am dynamically loading Assembly B, and trying to cast an object from it in …
3
votes
2answers
366 views

How do you pass parameters by ref when calling a static method using reflection?

I'm calling a static method on an object using reflection: MyType.GetMethod("MyMethod", BindingFlags.Static).Invoke(null, new object[] { Parameter1, Parameter2 }); …
1
vote
3answers
245 views

Why can’t I share types with an assembly loaded dynamically at runtime into the same load context?

I have a problem that is not uncommon when building a plug-in architecture. Assembly A is the core code -- the framework. Assembly B is a plugin to that code, expec …