public LinkNode()
 {
     this.data = default(T);
     this.next = null;
 }
 public LinkNode(T obj, LinkNode <T> pNext)
 {
     this.data = obj;
     this.next = pNext;
 }
 public void Dispose()
 {
     this.data = default(T);
     this.next = null;
 }
 public IlinkList()
 {
     this.head = null;
 }
 public LinkNode(T obj)
 {
     this.data = obj;
     this.next = null;
 }
 public IlinkList(T obj)
 {
     this.head = new LinkNode <T>(obj);
 }
Exemple #7
0
 public IlinkList()
 {
     head = null;
 }
Exemple #8
0
 public LinkNode(T obj, LinkNode <T> pNext)
 {
     data = obj;
     next = pNext;
 }
Exemple #9
0
 public LinkNode(T obj)
 {
     data = obj;
     next = null;
 }
Exemple #10
0
 public LinkNode()
 {
     data = default(T);
     next = null;
 }