P PJ Feb 28, 2006 #1 What is the equivalent syntax in VB.NET? public class PagingList<T> : List<T> { }
H Herfried K. Wagner [MVP] Feb 28, 2006 #2 PJ said: What is the equivalent syntax in VB.NET? public class PagingList<T> : List<T> Click to expand... \\\ Public Class PagingList(Of T) Inherits List(Of T) ... End Class ///
PJ said: What is the equivalent syntax in VB.NET? public class PagingList<T> : List<T> Click to expand... \\\ Public Class PagingList(Of T) Inherits List(Of T) ... End Class ///