Why can't I *override* and *new* a Property (C#) at the same time?
- by Tim Lovell-Smith
According to this question it seems like you can do this for Methods. What I want to know is why it doesn't work when I try it with properties.
public class Foo
{
public virtual object Value
{
get;
set;
}
}
public class Foo<T> : Foo
{
public override object Value
{
get
{
return…