Example #1
0
 public LinkNode()
 {
     this.data = default(T);
     this.next = null;
 }
Example #2
0
 public LinkNode(T obj, LinkNode <T> pNext)
 {
     this.data = obj;
     this.next = pNext;
 }
Example #3
0
 public void Dispose()
 {
     this.data = default(T);
     this.next = null;
 }
Example #4
0
 public IlinkList()
 {
     this.head = null;
 }
Example #5
0
 public LinkNode(T obj)
 {
     this.data = obj;
     this.next = null;
 }
Example #6
0
 public IlinkList(T obj)
 {
     this.head = new LinkNode <T>(obj);
 }
Example #7
0
 public IlinkList()
 {
     head = null;
 }
Example #8
0
 public LinkNode(T obj, LinkNode <T> pNext)
 {
     data = obj;
     next = pNext;
 }
Example #9
0
 public LinkNode(T obj)
 {
     data = obj;
     next = null;
 }
Example #10
0
 public LinkNode()
 {
     data = default(T);
     next = null;
 }