Учитывая приведенный ниже код, как вы называете такую собственность? < /p>
public interface IValue
{
T Value { get; }
}
public class BaseValue : IValue
{
T IValue.Value { get; } // What would you call this kind of property?
}
Подробнее здесь: https://stackoverflow.com/questions/566 ... f-property