5 lines
119 B
VB.net
5 lines
119 B
VB.net
Public Class Node(Of T)
|
|
Public Value As T
|
|
Public [Next] As Node(Of T)
|
|
Public Previous As Node(Of T)
|
|
End Class
|