PERWAPI.MethodRef.SetOptParTypes C# (CSharp) Méthode

SetOptParTypes() public méthode

Set the list of optional parameter types for this method
public SetOptParTypes ( Type pars ) : void
pars Type list of optional parameter types
Résultat void
        public void SetOptParTypes(Type[] pars)
        {
            if (pars == null) {
                sig.numOptPars = 0;
                return;
            }
            sig.optParTypes = pars;
            sig.numOptPars = (uint)sig.optParTypes.Length;
        }