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