0

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?
}
Steven T. Cramer
  • 1,508
  • 1
  • 18
  • 34

0 Answers0