Search Results

3
votes
2answers
363 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
241 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 …