Jon, i'm aware of C#4.0 dynamic keyword, but C#4.0 isn't even released... and i'm using 2.0 at work. :(
Its a really simply library. In fact, i´ve already done it (search in google code por LateBindingHelper) but i'm reimplementing it with a fluent interface :)
Lastly, the code does compile as any value type is automaticly boxed into an object, and any reference type... well, is in essence an object ;)
Marc Gravell, the library is aimed to work with COM, so a simple use of reference parameters is important. The idea is do something like this:
Invoker fi = new Invoker(Activator.CreateInstance<MyLateBindingTestType>());
int param1 = 2;
object paramObj = param1;
fi.Method("MulFiveRef").AddParameter(ref paramObj).Invoke();
param1 = (int)paramObj;
If all works right, param1 sould be 10 after calling .Invoke(), but i must be doing something wrong, as it does not workcannot change the value by reference once i've exited the AddParameter method.
Who whould have say that i'll be missing working with raw pointers :)
