CSLE.RegHelper_Function.RegHelper_Function C# (CSharp) Method

RegHelper_Function() public method

public RegHelper_Function ( Delegate dele ) : System
dele System.Delegate
return System
        public RegHelper_Function(Delegate dele)
        {
            this.dele = dele;

                this.keyword = dele.Method.Name;

            returntype = dele.Method.ReturnType;
            foreach (System.Reflection.ParameterInfo p in dele.Method.GetParameters())
            {
                defvalues.Add(p.DefaultValue);
                paramtype.Add(p.ParameterType);
            }
        }
        public RegHelper_Function(Delegate dele,string setkeyword)

Same methods

RegHelper_Function::RegHelper_Function ( Delegate dele, string setkeyword ) : System
RegHelper_Function