示例#1
0
文件: Car.cs 项目: pondyond/db4o
 private int CountHistoryElements()
 {
     return(_history == null ? 0 : _history.CountElements());
 }
示例#2
0
 public int CountElements()
 {
     return(_next == null ? 1 : _next.CountElements() + 1);
 }