I was wondering why I can not have generic property in non-generic class the way I can have generic methods. I.e.:

public interface TestClass
{
   IEnumerable<T> GetAllBy<T>(); //this works

   IEnumerable<T> All<T> { get; } //this does not work
}

I read @Jon Skeet's answer, but it's just a statement, which most probably is somewhere in the specifications.

My question is why actually it is that way? Was kind of problems were avoided with this limitation?

link|improve this question

3  
That's a good question for @EricLippert. – James Michael Hare Dec 23 '11 at 21:46
6  
The answer might be "it doesn't make any sense." Properties to me are about state, whereas methods are about behaviors. It makes sense for a behavior to be generically applicable and the type to not matter, and indeed for the same method to be generically applicable for many different executions with many different types in the same instance, and it doesn't make sense for state to be generically applicable to the same degree. If you need generic state, you need a generic class. But I'm just musing. – Anthony Pegram Dec 23 '11 at 22:00
2  
@AnthonyPegram is spot on here. How does it make any sense for a property of a thing to be parametrically polymorphic? A property of a thing is something like its colour, height, weight, and so on; the whole point of properties is that they are not parameterized. It doesn't make sense to have properties parameterized with formal parameters, and it certainly doesn't make any sense to say "I want my Car class to have a Weight<Fruit> property that is different from Weight<Giraffe>". What does it even mean to parameterize a property with a type? – Eric Lippert Dec 24 '11 at 1:17
feedback

4 Answers

Technically, the CLR supports only generic types and methods, not properties, so the question is why it wasn’t added to the CLR. The answer to that is probably simply “it wasn’t deemed to bring enough benefit to be worth the costs”.

But more fundamentally, it was deemed to bring no benefit because it doesn’t make sense semantically to have a property parameterised by a type. A Car class might have a Weight property, but it makes no sense to have a Weight<Fruit> and a Weight<Giraffe> property.

link|improve this answer
I think if you look at some of the other answers, there is a reason why they don't allow it, it wasn't just a "too much time" concern. – viggity Dec 23 '11 at 22:18
@viggity: My answer isn’t just a “too much time” either. Also, I have left comments on the other answers. In short, they do not address the question. – Timwi Dec 24 '11 at 16:54
feedback

This Generic Properties blog post from Julian Bucknall is a pretty good explanation. Essentially it's a heap allocation problem.

link|improve this answer
Like the other answer, this blog post does not at all address the question of generic properties, only generic fields. That does not explain why we couldn’t have generic properties. – Timwi Dec 24 '11 at 16:48
@Timwi You seem a little confused, the blog post specifically addresses properties. The references to 'field' are explaining a method of solving one part of the generic property issue by adding a 'field' keyword to the language. That still ends up at a dead end due to the problem of the compiler having no way to reliably guess the correct allocation size for the object's backing store. This is the ultimate problem that is summed up in the last couple of paragraphs in the post. – JamieSee Dec 28 '11 at 16:08
@Timwi I'd also note that even the properties of the form get; set; are still backed by a field, it's just one automatically generated by the compiler. As such, it still has the same backing store problem. – JamieSee Dec 28 '11 at 16:16
1  
That’s exactly what I’m saying. The problem is all with fields. Nothing in the blog entry says why we can’t have generic properties without a field. A property is just a get method (and optionally a set method), which could perfectly well be generic. It’s only fields that can’t be. – Timwi Dec 28 '11 at 17:20
There are plenty of examples of get-only properties, which would not necessary be backed up by a field, and can do basic calculations. So, for these the "field" theory does not hold. Actually, I started wondering about this problem because of such a property. – Sunny Dec 28 '11 at 19:46
show 1 more comment
feedback

I think not using an automatic getter/setter illustrates why this isn't possible without having "T" defined at the class level.

Try coding it, the natural thing to do would be this:

IEnumerable<T> _all;
IEnumerable<T> All
{
    get { return _all; }
}

Because your field uses "T", then "T" needs to be on the class the CLR knows what "T" is.

When you're using a method, you can delay definition of "T" until you actually call the method. But with the field/property, "T" needs to be declared in one place, at the class level.

Once you declare T on the class, creating a property becomes pretty easy.

public class TestClass<T>
{
    IEnumerable<T> All { get; }
}

usage:

var myTestClass = new TestClass<string>();
var stuff = myTestClass.All;

And just like the "T" type parameter on a method, you can wait until you actually instantiate your TestClass to define what "T" will be.

link|improve this answer
Your entire answer is all about fields, not properties; you are merely using the concept of automatically-implemented properties to stealthily refer to the implicit backing field. This answer does not address the question of generic properties, and the question wasn’t about auto-implemented generic properties. – Timwi Dec 24 '11 at 16:44
feedback

My guess is that it has some nasty corner cases that make the grammar ambiguous. Off-hand, this seems like it might be tricky:

foo.Bar<Baz>=3;

Should that be parsed as:

foo.Bar<Baz> = 3;

Or:

foo.Bar < Baz >= 3;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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