Example #1
0
        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);
        }
Example #2
0
 public Function GetFunction(string name) => Functions.Get(name);