コード例 #1
0
ファイル: Elemento.cs プロジェクト: lmfrocha/ti_aed_filas
 public Elemento(IDados data)
 {
     this.cliente = data;
     this.proximo = null;
 }
コード例 #2
0
ファイル: Lista.cs プロジェクト: AlexVesp/C-digo-AED-Banco
 public Lista()
 {
     this.primeiro   = new Elemento(null);
     this.ultimo     = this.primeiro;
     this.quantidade = 0;
 }