OK, VB.NET:

VB Code:
  1. Imports System.Collections
  2.  
  3. Public Class MyCollection
  4. Inherits CollectionBase  
  5.  
  6.    Public Sub New()
  7.       MyBase.New
  8.    End Sub
  9.  
  10. End Class

in c# I have:
VB Code:
  1. public class MyCollection: CollectionBase
  2. {
  3.     public MyCollection()
  4.     {
  5.                  //What on earth goes here?
  6.     }
  7. }
What should I put in the constructor sub? This.???

Woka