Ejemplo n.º 1
0
 private GlobalCollection(GeoRoot This)
 {
     this.This = This;
 }
Ejemplo n.º 2
0
 protected GeoParent(GeoRoot Root)
 {
     this.Root = Root ?? (GeoRoot)this;
 }
Ejemplo n.º 3
0
 public Enumerator(GeoRoot Parent)
 {
     Remaining = null == Parent ? 0u : Parent.Num;
     Active    = (Remaining == 0) ? null : Parent.Last;
 }