You
If the value is changing inside the method, you will need to declare a temp (object) variable to pass (ref) to the method, and unbox it yourself afterwards:
int i = 3;
//...
object obj = i;
Foo(ref obj);
i = (int)obj;
Note that this will not allow you to update the value after the event. Something like an event or callback might be an alternative way of passing changes back to the caller.
Note also that C# 4.0 has some tricks to help with this only in the context of COM calls (where ref object is so common [plus of course dynamic for late binding, as Jon notes]).
