Computer Science, asked by vijirenjusree9408, 1 year ago

Why do we use the params keyword in C#?

Answers

Answered by simrannehra936
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