PERWAPI.MethodRef.SetParTypes C# (CSharp) Метод

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

Set the parameter types for this method
public SetParTypes ( Type pars ) : void
pars Type List of types of method parameters
Результат void
        public void SetParTypes(Type[] pars)
        {
            if (pars == null) {
                sig.numPars = 0;
                return;
            }
            sig.parTypes = pars;
            sig.numPars = (uint)pars.Length;
        }