Parameters
This lesson discusses parameters passed into methods as well as the use of default parameters in C#
We'll cover the following...
We'll cover the following...
Introduction
A method can declare any number of parameters (in this example, i, s and o are the parameters).
Parameters can be used to pass values into a method so that the method can work with them. This ...