Lesson 7 - Methods
Objectives
-
Declare and call methods: C# Methods
-
Pass parameters to the methods: C# Method Parameters.
-
Make a method
int DaysInMonth(int month, int year)
out of the code from Days in a Month challenge. -
Write a method
double Average(int[] items)
which should return the average of all numbers in a given array.
-
-
Difference between passing parameters by value vs by referenece.