Imports System.Collections.Generic
Dim LL As New Linkedlist (of string)
Dim CreateNewNode As New LinkedlistNode (of string)("10")
LL.Addlast(CreateNewNode)
console.WriteLine(CreateNewNode.Previous.value & "-->" & CreateNewNode.Value & "-->" & CreateNewNode.next.Value)