Lecture overview -- Keyboard shortcut: 'u'  Previous page: Use of ref and out parameters in OOP -- Keyboard shortcut: 'p'  Next page: Extension Methods -- Keyboard shortcut: 'n'  Lecture notes - all slides together  Annotated slide -- Keyboard shortcut: 't'  Textbook -- Keyboard shortcut: 'v'  Alphabetic index  Help page about these notes  Course home    Data Access, Properties, and Methods - slide 27 : 29

Parameter Arrays
A parameter array is a formal parameter of array type which can absorb zero, one or more actual parameters
ex.cs
The class A with a DoAdd method - both out and params.
output
Output of class A with DoAdd - both out and params.
intseq.cs
An integer sequence - use of params in constructor.