PERWAPI.CalliSig.AddVarArgs C# (CSharp) Méthode

AddVarArgs() public méthode

Add the optional parameters to a vararg method This method sets the vararg calling convention
public AddVarArgs ( Type optPars ) : void
optPars Type the optional pars for the vararg call
Résultat void
        public void AddVarArgs(Type[] optPars)
        {
            optParTypes = optPars;
            if (optPars != null) numOptPars = (uint)optPars.Length;
            callConv |= CallConv.Vararg;
        }