6 lines
119 B
Text
6 lines
119 B
Text
|
|
Public Class Node(Of T)
|
||
|
|
Public Value As T
|
||
|
|
Public [Next] As Node(Of T)
|
||
|
|
Public Previous As Node(Of T)
|
||
|
|
End Class
|