October 2005
Beginner
592 pages
15h 2m
English
After completing this chapter, you will be able to:
Write a method that can accept any number of arguments by using the params keyword.
Write a method that can accept any number of arguments of any type by using the params keyword in combination with the object type.
Parameter arays are useful if you want to write methods that can take variable numbers of arguments, possibly of different types, as parameters. If you are familiar with object-oriented concepts, you might well be grinding your teeth in frustration at this sentence. After all, the object-oriented approach to solving this problem is to define overloaded methods.
Overloading is the technical term for declaring two or more methods with the same ...