PERWAPI.ReferenceScope.AddMethod C# (CSharp) Метод

AddMethod() публичный Метод

Fetch a MethodRef descriptor for the method "retType name (pars)". If one exists, it is returned, else one is created.
public AddMethod ( string name, Type retType, Type pars ) : MethodRef
name string method name
retType Type return type
pars Type method parameter types
Результат MethodRef
        public MethodRef AddMethod(string name, Type retType, Type[] pars)
        {
            MethodRef meth = defaultClass.AddMethod(name,retType,pars);
            return meth;
        }

Same methods

ReferenceScope::AddMethod ( MethodRef meth ) : void