Java AbstractList class is very convenient when you need to implement the List interface whithout having to code everything from scratch.
Now, in C#, I need to implement a view on a part of my datamodel that would implement IList.
Is there an abstract class in .Net that I could inherit, in the same way that I would extend AbstractList if it was in Java ?
You’re looking for
System.Collections.ObjectModel.Collection<T>.