Why do we use the params keyword in C#?
Answers
Answered by
0
The "Params" keyword allows passing a variable number arguments to a function. Using "Params", the arguments passed to a method are changed by the compiler to elements in a temporary array, and this array is then used to retrieve the method.
Similar questions