show/hide this revision's text 4 added 807 characters in body

I just ran across this error message while working in c#

A property or indexer may not be passed as an out or ref parameter

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 out/ref parameter and then assigning it back to the property:

RefFn(ref obj.prop);

turns into

{
var t = obj.prop;
RefFn(ref t);
obj.prop = t;
}

Clearly this would fail if the property doesn't support get and set in the current context.

Why doesn't c# just do that for me?


The only cases where I can thing of where this might cause problems are:

  • threading
  • exceptions

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.

For exceptions, the concern would be; what happens if the function assigns to one of several ref 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.


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.

show/hide this revision's text 3 added 62 characters in body

I just ran across this error message while working in c#

A property or indexer may not be passed as an out or ref parameter

The

I known what caused this and did the quick solution is to create of creating a local variable of the correct type, call calling the function with it as the out/ref parameter and then assign assigning it back to the property.:

RefFn(ref obj.prop);

turns into

{
var t = obj.prop;
RefFn(ref t);
obj.prop = t;
}

Why doesn't c# just do that for me?


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.

show/hide this revision's text 2 added 201 characters in body

I just ran across this error in c#

A property or indexer may not be passed as an out or ref parameter

The quick solution is to create local variable of the correct type, call the function with it as the out/ref parameter and then assign it back to the property.

RefFn(ref obj.prop);

turns into

{
var t = obj.prop;
RefFn(ref t);
obj.prop = t;
}

Why doesn't c# just do that for me?


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.

show/hide this revision's text 1