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