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 { IEnumerabl
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=3;
Should that be parsed as:
foo.Bar = 3;
Or:
foo.Bar < Baz >= 3;