Your method isn't changing value anyway - why are you passing it by reference? It may make sense, but it's not really clear to me. Note that the sample code you've provided wouldn't compile anyway, as ref arguments have to be exactly the same type as the parameter.
(Also, are you aware that C# 4.0 and .NET 4.0 will have built-in support for late-binding? Chances are that the language-integrated version will be easier to use than a library-only one. Are you sure it's worth spending time on the library at this point in time?)
EDIT: The code you've provided really won't compile. You don't get boxing for ref parameters, precisely because the argument and parameter types have to be exactly the same. Here's some sample code to prove it:
public class Test
{
static void Main()
{
int i;
Foo(ref i); // Won't compile - error CS1502/1503
}
static void Foo(ref object x)
{
}
}
If your current code is compiling, then it's not the code you presented in the question. Perhaps you have another overload for AddParameter which accepts ref int?
