AddisonWesley.Michaelis.EssentialCSharp.Chapter05.Listing05_14.Program.IncreaseSalary C# (CSharp) Method

IncreaseSalary() static private method

static private IncreaseSalary ( Employee employee ) : void
employee Employee
return void
        static void IncreaseSalary(Employee employee)
        {
            employee.Salary = "Enough to survive on";
        }
    }