Esempio n. 1
0
 protected Ingranaggio(IListaDenti denti) : this()
 {
     this.denti = denti;
 }
Esempio n. 2
0
 public void Dispose()
 {
     this.denti     = null;
     this.m_Current = null;
 }
Esempio n. 3
0
 protected Ingranaggio()
 {
     this.denti = new ListaDenti();
     this.IndiceDenteCorrente = -1;
     this.m_Current           = null;
 }