c# property and ref parameter, why no sugar? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T04:48:29Zhttp://stackoverflow.com/feeds/question/529782http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/529782/c-property-and-ref-parameter-why-no-sugar7c# property and ref parameter, why no sugar?BCS2009-02-09T20:29:55Z2009-02-09T21:47:29Z
<p>I just ran across this error message while working in c#</p>
<blockquote>
<p>A property or indexer may not be passed as an out or ref parameter</p>
</blockquote>
<p>I known what caused this and did the quick solution of creating a local variable of the correct type, calling the function with it as the <code>out</code>/<code>ref</code> parameter and then assigning it back to the property:</p>
<pre><code>RefFn(ref obj.prop);
</code></pre>
<p>turns into</p>
<pre><code>{
var t = obj.prop;
RefFn(ref t);
obj.prop = t;
}
</code></pre>
<p>Clearly this would fail if the property doesn't support get and set in the current context.</p>
<p>Why doesn't c# just do that for me?</p>
<p><hr /></p>
<p>The only cases where I can thing of where this might cause problems are:</p>
<ul>
<li>threading</li>
<li>exceptions</li>
</ul>
<p>For threading do that transformation would effect when the writes happen (after the function call vs. in the function call) but I rather suspect any code that counts on that would get little sympathy when it breaks.</p>
<p>For exceptions, the concern would be; what happens if the function assigns to one of several <code>ref</code> parameters than throws? Any trivial solution would result in all or none of the parameters being assigned to when some should be and some should not be. Again I don't thing this would be supported use of the language.</p>
<p><hr /></p>
<p>Note: I understand the mechanics of why this error messages is generated. What I' looking for is the rational for why c# doesn't automatically implement the trivial work around.</p>
http://stackoverflow.com/questions/529782/c-property-and-ref-parameter-why-no-sugar/529795#5297951Answer by BC for c# property and ref parameter, why no sugar?BC2009-02-09T20:32:58Z2009-02-09T20:36:34Z<p>The road to sugary compilers is paved with good intentions.</p>
http://stackoverflow.com/questions/529782/c-property-and-ref-parameter-why-no-sugar/529802#5298024Answer by Brian Rasmussen for c# property and ref parameter, why no sugar?Brian Rasmussen2009-02-09T20:33:57Z2009-02-09T20:33:57Z<p>You can use fields with <code>ref</code>/<code>out</code>, but not properties. The reason is that properties are really just a syntax short cut for special methods. The compiler actually translates get / set properties to corresponding <code>get_X</code> and <code>set_X</code> methods as the CLR has no immediate support for properties.</p>
http://stackoverflow.com/questions/529782/c-property-and-ref-parameter-why-no-sugar/529808#5298088Answer by David Morton for c# property and ref parameter, why no sugar?David Morton2009-02-09T20:34:47Z2009-02-09T20:34:47Z<p>Because you're passing the <em>result</em> of the indexer, which is really the result of a method call. There's no guarantee that the indexer property also has a setter, and passing it by ref would lead to a false security on the developer's part when he thinks that his property is going to be set without the setter being called.</p>
<p>On a more technical level, ref and out pass the memory address of the object passed into them, and to set a property, you have to call the setter, so there's no guarantee that the property would actually be changed especially when the property type is immutable. ref and out don't just <em>set</em> the value upon return of the method, they pass the actual memory reference to the object itself. </p>
http://stackoverflow.com/questions/529782/c-property-and-ref-parameter-why-no-sugar/529813#5298131Answer by Igor Zelaya for c# property and ref parameter, why no sugar?Igor Zelaya2009-02-09T20:35:23Z2009-02-09T20:36:01Z<p>when you pass ref/out prepended it means that you are passing areference type which is stored in the heap.</p>
<p>Properties are wrapper methods, not variables</p>
http://stackoverflow.com/questions/529782/c-property-and-ref-parameter-why-no-sugar/529815#5298155Answer by sixlettervariables for c# property and ref parameter, why no sugar?sixlettervariables2009-02-09T20:36:05Z2009-02-09T21:47:29Z<p>Properties are nothing more than syntactic sugar over the Java style getX/setX methods. It doesn't make much sense for 'ref' on a method. In your instance it would make sense because your properties are merely stubbing out fields. Properties don't have to just be stubs, hence the framework cannot allow 'ref' on Properties.</p>
<p><strong>EDIT</strong>: Well, the simple answer is that the mere fact that a Property getter or setter could include far more than just a field read/write makes it undesirable, not to mention possibly unexpected, to allow the sort of sugar you are proposing. This isn't to say I haven't been in need of this functionality before, just that I understand why they wouldn't want to provide it.</p>
http://stackoverflow.com/questions/529782/c-property-and-ref-parameter-why-no-sugar/529829#5298296Answer by Marc Gravell for c# property and ref parameter, why no sugar?Marc Gravell2009-02-09T20:39:11Z2009-02-09T20:39:11Z<p>Just for info, C# 4.0 <em>will</em> have something <em>like</em> this sugar, but only when calling interop methods - partly due to the sheer propensity of <code>ref</code> in this scenario. I haven't tested it much (in the CTP); we'll have to see how it pans out...</p>
http://stackoverflow.com/questions/529782/c-property-and-ref-parameter-why-no-sugar/529833#5298330Answer by BC for c# property and ref parameter, why no sugar?BC2009-02-09T20:40:10Z2009-02-09T20:40:10Z<p>If you're asking why the compiler doesn't substitute the field returned by the property's getter, it's because the getter can return a const or readonly or literal or something else that shouldn't be re-initialized or overwritten.</p>
http://stackoverflow.com/questions/529782/c-property-and-ref-parameter-why-no-sugar/529835#5298350Answer by regex for c# property and ref parameter, why no sugar?regex2009-02-09T20:40:42Z2009-02-09T20:40:42Z<p>This site appears to have a work around for you. I have not tested it though, so I can't guarantee it will work. The example appears to use reflection in order to gain access to the get and set functions of the property. This is probably not a recommended approach, but it might accomplish what you're asking for.</p>
<p><a href="http://www.codeproject.com/KB/cs/Passing_Properties_byref.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/Passing_Properties_byref.aspx</a></p>
http://stackoverflow.com/questions/529782/c-property-and-ref-parameter-why-no-sugar/529843#5298431Answer by Andrew Hare for c# property and ref parameter, why no sugar?Andrew Hare2009-02-09T20:41:55Z2009-02-09T20:41:55Z<p>The reason for this is that C# does not support "parameterful" properties that accept parameters passed by reference. It is interesting to note that the CLR does support this functionalty but C# does not.</p>
http://stackoverflow.com/questions/529782/c-property-and-ref-parameter-why-no-sugar/530146#5301463Answer by Coder 42 for c# property and ref parameter, why no sugar?Coder 422009-02-09T21:46:27Z2009-02-09T21:46:27Z<p>It wouldn't be thread-safe; if two threads simultaneously create their own copies of the property value and pass them to functions as ref parameters, only one of them ends up back in the property.</p>
<pre><code>class Program
{
static int PropertyX { get; set; }
static void Main()
{
PropertyX = 0;
// Sugared from:
// WaitCallback w = (o) => WaitAndIncrement(500, ref PropertyX);
WaitCallback w = (o) => {
int x1 = PropertyX;
WaitAndIncrement(500, ref x1);
PropertyX = x1;
};
// end sugar
ThreadPool.QueueUserWorkItem(w);
// Sugared from:
// WaitAndIncrement(1000, ref PropertyX);
int x2 = PropertyX;
WaitAndIncrement(1000, ref x2);
PropertyX = x2;
// end sugar
Console.WriteLine(PropertyX);
}
static void WaitAndIncrement(int wait, ref int i)
{
Thread.Sleep(wait);
i++;
}
}
</code></pre>
<p>PropertyX ends up as 1, whereas a field or local variable would be 2.</p>
<p>That code sample also highlights the difficulties introduced by things like anonymous methods when asking the compiler to do sugary stuff.</p>