I've wanted this for fluent interfaces. See, for example this Channel9 discussion. Would probably require also adding indexed properties.
What are your thoughts? Would the advantages outweigh the "language clutter"?
|
|
|||
|
|
|
Since properties are just syntactic sugar for methods, I don't see why C# should have extension methods without extension properties. |
||
|
|
|
|
It's about databinding, let's say I have an object for binding to my UI and I want to hide show it based on other properties of the object. I could add an extension property for IsVisible or Visibility and bind that property to the UI. You can't bind extension methods, but being able to add properties for databinding to existing types you can't extend could be very useful. |
||||
|
|
|
I don't think extension properties would be nearly as useful. I find myself mostly using properties to encapsulate fields (classic get; set;) or to provide read only goodness (just a get on a private, readonly, contructor-set field). Since extensions can't access private members, I don't really see the point, especially for "set;". To do anything, "set;" would just have to call other methods anyway. Then you run into the issue of properties throwing exceptions. |
||
|
|
|
|
I don't know why not. Properties are just getter/setter methods with differant syntax. |
||
|
|
|
|
I guess it would be great, as long as there's no or minimal performance penalty in using them. |
||
|
|
|
|
Seems like it could be easily misused. As others have mentioned, C# properties are just syntactic sugar for methods. However, implementing those as properties has certain connotations: accessing won't have side effects and modifying a property should be very inexpensive. The latter point is crucial as it seems like extension properties will almost always be more expensive than conventional properties. |
||
|
|
|
|
Would definately add to the repertoire of tools at our disposal. Now as for my opinion, yes they should, but like anything, developers need to use it properly and when needed. Like most new features, a lot of dev's use them without fully understanding them and when/how/where/how best to use them. I know I get sucked into this sometimes too. But ya, sure, bring it on. I could see myself using it in certain scenarios |
||
|
|
|
|
I'm guessing indexed properties will be a mere stocking stuffer among a large bag of of significant enhancements we'll be seeing in 4.0. |
||
|
|
|
|
No, a property is just a way to hide what has really been generated for the code. If you look at the reflected code or the IL you can determine what you're really getting and it is the following:
becomes
It's just 2 methods. |
||
|
|