Is it a pretty safe assumption that the following class is an odd representation of "downgrading" (for lack of a better word) the private class field?
public class AggregatedClass : ICollection<SingleClass>
{
List<SingleClass> _singleClassList;
// ...rest of code
}
I recently saw a "working" example of this, and it threw me for a bit of a loop. What is the point of the above? If List<T> implements ICollection<T>, then isn't the above class a reversal? You're having a private class field that's type class is an extension of it's parent's class implementation (ICollection<T>).
Is it accurate to say the above example is not really a great design?
List<T>actually implements ICollection<T>? – user596075 Dec 11 '11 at 19:00