Ejemplo n.º 1
0
 public bool addFuncMet(FuncionInstruccion func, string idUnico)
 {
     if (this.funciones.ContainsKey(func.Id.ToLower()))
     {
         return(false);
     }
     this.funciones.Add(func.Id.ToLower(), new SimboloFuncionMetodo(func, idUnico));
     return(true);
 }
Ejemplo n.º 2
0
 public SimboloFuncionMetodo(FuncionInstruccion func, string idUnico)
 {
     throw new NotImplementedException();
 }