Can I inherit from Collections.Generics.List in VB.NET 2.0?

  • Thread starter Thread starter Guest
  • Start date Start date
Hello Rj,

List<T> is not inteded for inheritance, as it is optimized for speed (and
thus has not virtual methods).

Use the System.Collections.ObjectModel.Collection<T> instead.

Best regards,
Henning Krause
 
Back
Top