Ejemplo n.º 1
0
        public ParameterDeclaration AddParameter(string name, IType type, bool byref)
        {
            ParameterDeclaration pd = _codeBuilder.CreateParameterDeclaration(GetNextParameterIndex(), name, type, byref);

            _method.Parameters.Add(pd);
            return(pd);
        }