コード例 #1
0
ファイル: Tabla.cs プロジェクト: cabreration/ChatBot_Service
 public Tabla()
 {
     padre     = null;
     elementos = new Hashtable();
 }
コード例 #2
0
ファイル: Tabla.cs プロジェクト: cabreration/ChatBot_Service
 public Tabla(Tabla padre)
 {
     this.padre     = padre;
     this.elementos = new Hashtable();
 }