Esempio n. 1
0
 public Clase()
 {
     principal = new Entorno();
 }
Esempio n. 2
0
 public Entorno()
 {
     this.anterior = null;
     tableSyml     = new Hashtable();
 }
Esempio n. 3
0
 public Entorno(Entorno anterior)
 {
     this.anterior = anterior;
     tableSyml     = new Hashtable();
 }
Esempio n. 4
0
 public Entorno(Entorno anterior, Hashtable tableSyml)
 {
     this.anterior  = anterior;
     this.tableSyml = tableSyml;
 }