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