Tip: | The easiest way to ensure that you do not use a reserved name is to always make your input parameters specific. This also makes them easier for other user to understand. For example, use projectDocument rather than document or itemCount rather than count. You can also use prefixes or suffixes, such as myCount or client2. |
Note: | Names are case sensitive, so items and Items are different input parameters. It is not a good practice, however, to have input parameter names that are very similar. |