vote up 5 vote down star

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"?

flag

0% accept rate
Found this interesting blog post by Eric Lippert on the topic blogs.msdn.com/ericlippert/archive/… – Jon Oct 9 at 20:53

9 Answers

vote up 11 vote down

Since properties are just syntactic sugar for methods, I don't see why C# should have extension methods without extension properties.

link|flag
vote up 6 vote down

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.

link|flag
Yes, I need it for databinding also!!!! – tbone Jun 15 at 21:15
This would not work: data binding uses reflection on the bound object's type to get at the properties. An extension property would exist in an arbitrary second type which the binding framework would have no knowledge of. Extension methods (and properties, if they existed) are a compile-time feature with no runtime discoverability. – Ben M Oct 22 at 23:42
vote up 2 vote down

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.
Since extensions are limited to using public properties and methods, I find it cleaner and easier to read code that uses a utility class. When it comes down to it, we are using extension methods to make LINQ look pretty. To keep developers from doing the wrong thing, I can deal with an extra () here and there in my LINQ and stick to just extension methods.

link|flag
vote up 1 vote down

I don't know why not. Properties are just getter/setter methods with differant syntax.

link|flag
vote up 1 vote down

I guess it would be great, as long as there's no or minimal performance penalty in using them.

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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:

public string MyProperty { get; set; }

becomes

public string get_MyProperty(){ return <some generated variable>; }
public string set_MyProperty(string value) { <some generated variable> = value; }

It's just 2 methods.

link|flag

Your Answer

Get an OpenID
or

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