Exemplo n.º 1
0
 public RebarBand Add( RebarBand band ) {
     List.Add( band );
     band.Bands = this;
     return band;
 }
Exemplo n.º 2
0
 public int IndexOf( RebarBand band ) {
     return List.IndexOf( band );
 }
Exemplo n.º 3
0
 public void Remove( RebarBand band ) {
     band.DestroyBand();
     List.Remove( band );
     band.Dispose();
 }