Home All Groups Group Topic Archive Search About

Inherit from a Generic

Author
28 Feb 2006 11:26 PM
PJ
What is the equivalent syntax in VB.NET?

public class PagingList<T> : List<T>
{
}

Author
28 Feb 2006 11:32 PM
Herfried K. Wagner [MVP]
"PJ" <pjNOSPAM@hotmail.com> schrieb:
> What is the equivalent syntax in VB.NET?
>
> public class PagingList<T> : List<T>

\\\
Public Class PagingList(Of T)
    Inherits List(Of T)

    ...
End Class
///

--
M S   Herfried K. Wagner
M V P  <URL:http://dotnet.mvps.org/>
V B   <URL:http://classicvb.org/petition/>