CSLE.CLS_Environment.GetFunction C# (CSharp) Method

GetFunction() public method

public GetFunction ( string name ) : ICLS_Function
name string
return ICLS_Function
        public ICLS_Function GetFunction(string name)
        {
            ICLS_Function func = null;
            calls.TryGetValue(name, out func);
            if (func == null)
            {
                throw new Exception("找不到函数:" + name);
            }
            return func;
        }
        public ICLS_Logger logger