예제 #1
0
 public void DeleteNext()
 {
     this.next = this.next.next;
 }
예제 #2
0
 public void Insert(int value)
 {
     Domino tmp = this.next;
     this.next = new Domino(value);
     this.next.next = tmp;
 }
예제 #3
0
 public Domino Add(int value)
 {
     this.Next = new Domino(value);
     return this.Next;
 }