コード例 #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;
 }