Given the below code, what do you call that kind of property?
public interface IValue<T>
{
T Value { get; }
}
public class BaseValue<T> : IValue<T>
{
T IValue<T>.Value { get; } // What would you call this kind of property?
}
Given the below code, what do you call that kind of property?
public interface IValue<T>
{
T Value { get; }
}
public class BaseValue<T> : IValue<T>
{
T IValue<T>.Value { get; } // What would you call this kind of property?
}