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