Esempio n. 1
0
File: Car.cs Progetto: pondyond/db4o
 private int CountHistoryElements()
 {
     return(_history == null ? 0 : _history.CountElements());
 }
Esempio n. 2
0
 public int CountElements()
 {
     return(_next == null ? 1 : _next.CountElements() + 1);
 }