A parameter with this name was already defined (AJTERR10019)
| Product(s) | Karo.NET Compiler |
|---|
Description
In a function definition you cannot name two parameters with the same name.
helloWorld |parameter: string, parameter: string|: string { }
// ^^^^^^^^^ The second parameter has the same name as the first one
How can I resolve this error?
Use different names for the different parameters.