Community

.NET Tip: Passing a Variable Number of Arguments to a Method

(Jay Miller) If you need to pass an unknown number of arguments to a method, the params keyword is exactly what you need. With params, you can pass a variable number of parameters to a method and any parameters after the fixed parameters will be collected into an array and passed to your method. You

Read More - Register for Free Membership