OK, VB.NET:
VB Code:
Imports System.Collections Public Class MyCollection Inherits CollectionBase Public Sub New() MyBase.New End Sub End Class
in c# I have:
What should I put in the constructor sub? This.???VB Code:
public class MyCollection: CollectionBase { public MyCollection() { //What on earth goes here? } }
Woka




Reply With Quote