vote up 0 vote down star

The C# compiler doesn't allow this. What's the reason for this? And what workaround I can use?

Basically I need to swap some values around, but don't wanna have the same swapping code all over.

flag

56% accept rate
1  
Ravadre's answer is solid. If you can provide more details on why you think you need ref treatment of properties, perhaps the crowd can provide you a workaround. – Drew Noakes Oct 2 at 0:18
It's because I need to swap some values around. Like x and y for instance. – Joan Venge Oct 2 at 16:09
1  
@Joan: I'd suggest not using automatic properties. This feature was introduce as a syntactic sugar, not as a must-use feature. If situation require that you need to access the variable itself, as well as you property for clean encapsulation, you might consider going "the standard way". – Ravadre Oct 2 at 16:36
Ok makes sense. – Joan Venge Oct 2 at 16:45

1 Answer

vote up 5 vote down check

Properties, in general are just methods, so it would be strange if you could just "get reference to them", as no one can be sure, that you are referring to just a variable. I don't think there's a quick and nice workaround other that not using auto-properties in this case.

I'm omitting the idea of using reflection to get to those variables under the hood, as it wouldn't make much sense in this case.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.