public Function GetConstructor(int l) { var values = Constructors.values; for (int i = 0; i <= Constructors.index; i++) { var c = (Function)Constructors.Get(i).Value; if (l == [email protected]) { return(c); } } return(null); }
public Function GetFunction(string name) => Functions.Get(name);