How to modify a boxed value type inside a method - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T01:14:42Zhttp://stackoverflow.com/feeds/question/283492http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/283492/how-to-modify-a-boxed-value-type-inside-a-method0How to modify a boxed value type inside a methodRicky AH2008-11-12T10:15:28Z2008-11-12T12:17:04Z
<p>I'm tring to build a library for simplifing late binding calls in C#, and I'm getting trouble tring with reference parameteres. I have the following method to add a parameter used in a method call</p>
<pre><code> public IInvoker AddParameter(ref object value)
{
//List<object> _parameters = new List<object>();
_parameters.Add(value);
//List<bool> _isRef = new List<bool>();
_isRef.Add(true);
return this;
}
</code></pre>
<p>And that doesn't work with value types, because they get boxed as an object, thus they are not modified. E.g:</p>
<pre><code>int param1 = 2;
object paramObj = param1;
//MulFiveRef method multiplies the integer passed as a reference parameter by 5:
//void MulFiveRef(ref int value) { value *= 5; }
fi.Method("MulFiveRef").AddParameter(ref paramObj);
</code></pre>
<p>That doesn't work. The late binding call is successful, and the inner List which holds the parameteres (_parameters ) does get modified, but not the value outside the call.</p>
<p>Does anyone knows a simple way to overcome this limitation?
The AddParameter signature cannot be modified, as with late binding calls, you cannot know in advance the Type of the parameters (and either way you insert all the parameters for a call inside an object array prior to making the call)</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/283492/how-to-modify-a-boxed-value-type-inside-a-method/283499#2834991Answer by Jon Skeet for How to modify a boxed value type inside a methodJon Skeet2008-11-12T10:19:00Z2008-11-12T10:41:21Z<p>Your method isn't changing <code>value</code> 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 <code>ref</code> arguments have to be <em>exactly</em> the same type as the parameter.</p>
<p>(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?)</p>
<p>EDIT: The code you've provided really won't compile. You don't get boxing for <code>ref</code> parameters, precisely because the argument and parameter types have to be exactly the same. Here's some sample code to prove it:</p>
<pre><code>public class Test
{
static void Main()
{
int i;
Foo(ref i); // Won't compile - error CS1502/1503
}
static void Foo(ref object x)
{
}
}
</code></pre>
<p>If your current code <em>is</em> compiling, then it's not the code you presented in the question. Perhaps you have another overload for <code>AddParameter</code> which accepts <code>ref int</code>?</p>
http://stackoverflow.com/questions/283492/how-to-modify-a-boxed-value-type-inside-a-method/283500#2835001Answer by Marc Gravell for How to modify a boxed value type inside a methodMarc Gravell2008-11-12T10:19:23Z2008-11-12T10:24:34Z<p>If the value is changing <em>inside the method</em>, you will need to declare a temp (<code>object</code>) variable to pass (<code>ref</code>) to the method, and unbox it yourself afterwards:</p>
<pre><code> int i = 3;
//...
object obj = i;
Foo(ref obj);
i = (int)obj;
</code></pre>
<p>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.</p>
<p>Note also that C# 4.0 has some tricks to help with this <em>only</em> in the context of COM calls (where <code>ref object</code> is so common [plus of course <code>dynamic</code> for late binding, as Jon notes]).</p>
http://stackoverflow.com/questions/283492/how-to-modify-a-boxed-value-type-inside-a-method/283530#2835300Answer by Ricky AH for How to modify a boxed value type inside a methodRicky AH2008-11-12T10:31:29Z2008-11-12T10:40:05Z<p>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. :(</p>
<p>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 :)</p>
<p>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 ;)</p>
<p>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:</p>
<pre><code> Invoker fi = new Invoker(Activator.CreateInstance<MyLateBindingTestType>());
int param1 = 2;
object paramObj = param1;
fi.Method("MulFiveRef").AddParameter(ref paramObj).Invoke();
param1 = (int)paramObj;
</code></pre>
<p>If all works right, param1 sould be 10 after calling .Invoke(), but i cannot change the value by reference once i've exited the AddParameter method.</p>
<p>Who whould have say that i'll be missing working with raw pointers :)</p>
http://stackoverflow.com/questions/283492/how-to-modify-a-boxed-value-type-inside-a-method/283769#2837690Answer by Ricky AH for How to modify a boxed value type inside a methodRicky AH2008-11-12T12:17:04Z2008-11-12T12:17:04Z<p>Ok, thanks to Jon Skeet corrections and Mark Gravell code, i've come up with this interface:</p>
<pre><code> //This will be created with a factory
IOperationInvoker invoker = new OperationInvoker(Activator.CreateInstance<MyLateBindingTestType>());
int param1 = 2;
object paramObj = param1;
invoker.AddParameter(ref paramObj).Invoke("MulFiveRef");
param1 = (int)invoker.Parameters[0];
</code></pre>
<p>Is not exactly as I've imagined ( "I don't know, I can imagine quite a bit" ) ,but is way more simply and readable that my previous interface:</p>
<pre><code> IOperationInvoker invoker = new OperationInvoker(Activator.CreateInstance<MyLateBindingTestType>());
int refValue = 10;
object[] args = Args.Build(refValue);
invoker.Call("MulFiveRef", Args.ByRefIndexs(0), args);
refValue = (int)args[0];
</code></pre>
<p>Thank you very much for your help people :)</p>