Link Search Menu Expand Document

Lesson 7 - Methods

Objectives

  1. Declare and call methods: C# Methods

  2. 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.

  3. Difference between passing parameters by value vs by referenece.

Home Assignments

  1. Max Consecutive Ones

  2. Student Attendance Record

  3. ** Letter Frequency